In my django project\'s settings.py file, I have this line :
settings.py
TIME_ZONE = \'UTC\'
But I want my app to run in UTC+2 timezone, s
Universal solution, based on Django's TZ name support:
UTC-2 = 'Etc/GMT+2' UTC-1 = 'Etc/GMT+1' UTC = 'Etc/GMT+0' UTC+1 = 'Etc/GMT-1' UTC+2 = 'Etc/GMT-2'
+/- is intentionally switched.