Commit 7a67102e authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed django.utils.timezone.__all__ to include correct function names.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17259 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 2d1a681f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ from django.conf import settings
__all__ = [
    'utc', 'get_default_timezone', 'get_current_timezone',
    'activate', 'deactivate', 'override',
    'localtime', 'isnaive',
    'localtime', 'is_naive', 'is_aware', 'make_aware', 'make_naive',
]