0

I'm going through the django tutorial, when they ask me to enter the TIME_ZONE I don't know how to do it right. I have entered

TIME_ZONE = 'America/New_York'

What is the correct terminology for the timezone?

doniyor
  • 36,596
  • 57
  • 175
  • 260

1 Answers1

3

When timezone aware, django uses pytz to validate the timezone.

This means every entry in this list can be used. America/New_York is in that list, so it should be valid to use.

Community
  • 1
  • 1