I follow the official Django documentation for writing the first application using Django.
It says here that I have to set TIME_ZONE to my time zone in the settings.py file.
Default value TIME_ZONE : "utc"
And I changed it to: "utc + 6.00"
After this edition, when I try to transfer the manage.py file:
python manage.py migrate
A value error has occurred:
ValueError: Incorrect timezone setting: UTC+6.00
I apologize if this is a very simple question. But I could not understand the solution after several hours of searching on Google.
NB:
My time zone is Asia / Dhaka (+6: 00)
My os - Ubuntu 14.10
source share