diff options
-rw-r--r-- | src/pytz/__init__.py | 2 | ||||
-rw-r--r-- | src/pytz/tests/test_tzinfo.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py index ad0d0e0..ac18c02 100644 --- a/src/pytz/__init__.py +++ b/src/pytz/__init__.py @@ -9,7 +9,7 @@ on how to use these modules. ''' # The Olson database is updated several times a year. -OLSON_VERSION = '2010k' +OLSON_VERSION = '2010l' VERSION = OLSON_VERSION # Version format for a patch release - only one so far. #VERSION = OLSON_VERSION + '.2' diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py index d5cfb38..e665ec8 100644 --- a/src/pytz/tests/test_tzinfo.py +++ b/src/pytz/tests/test_tzinfo.py @@ -16,7 +16,7 @@ from pytz.tzinfo import StaticTzInfo # I test for expected version to ensure the correct version of pytz is # actually being tested. -EXPECTED_VERSION='2010k' +EXPECTED_VERSION='2010l' fmt = '%Y-%m-%d %H:%M:%S %Z%z' |