diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-08 17:38:26 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-08 17:38:26 -0600 |
commit | ec5649fada6d91ea7d1a75efe7e42699d0f0f7b6 (patch) | |
tree | 825d333588053544f33facef9e73c8621cadd659 | |
parent | ef016929a9863810cb0e9078c13bd1142922a63d (diff) |
Use common timezones only
No need to show historical and deprecated zone names.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | main/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py index 7ce2d2f4..ff2ecf02 100644 --- a/main/models.py +++ b/main/models.py @@ -16,7 +16,7 @@ class UserProfile(models.Model): help_text="When enabled, send user 'flag out-of-date' notifications") time_zone = models.CharField( max_length=100, - choices=make_choice(pytz.all_timezones), + choices=make_choice(pytz.common_timezones), default="UTC", help_text="Used for developer clock page") alias = models.CharField( |