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
This commit is contained in:
Jannis Leidel 2011-12-23 11:19:00 +00:00
parent 2d1a681f77
commit 7a67102e8d
1 changed files with 1 additions and 1 deletions

View File

@ -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',
]