From 7a67102e8d869eb0d130d99b90387bd40aa91ee7 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 23 Dec 2011 11:19:00 +0000 Subject: [PATCH] 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 --- django/utils/timezone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/utils/timezone.py b/django/utils/timezone.py index 0476d46f7ec..c29cdf76843 100644 --- a/django/utils/timezone.py +++ b/django/utils/timezone.py @@ -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', ]