diff --git a/timezones/__init__.py b/timezones/__init__.py index ccfd715..e69de29 100644 --- a/timezones/__init__.py +++ b/timezones/__init__.py @@ -1,3 +0,0 @@ -# for backwards compatability -from timezones.forms import ALL_TIMEZONE_CHOICES -TIMEZONE_CHOICES = ALL_TIMEZONE_CHOICES \ No newline at end of file diff --git a/timezones/forms.py b/timezones/forms.py index e432aee..0d24e66 100644 --- a/timezones/forms.py +++ b/timezones/forms.py @@ -7,7 +7,7 @@ from timezones.utils import adjust_datetime_to_timezone -ALL_TIMEZONE_CHOICES = TIMEZONE_CHOICES = tuple(zip(pytz.all_timezones, pytz.all_timezones)) +ALL_TIMEZONE_CHOICES = tuple(zip(pytz.all_timezones, pytz.all_timezones)) COMMON_TIMEZONE_CHOICES = tuple(zip(pytz.common_timezones, pytz.common_timezones)) PRETTY_TIMEZONE_CHOICES = [] for tz in pytz.common_timezones: