Commit db60a520 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

[1.6.x] Fixed #21880 -- Added missing items to django.utils.timezone.__all__.

Thanks Wim for the report.

Backport of 2b154ae2 from master.
parent a0a6112a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -18,9 +18,12 @@ from django.conf import settings
from django.utils import six

__all__ = [
    'utc', 'get_default_timezone', 'get_current_timezone',
    'utc',
    'get_default_timezone', 'get_default_timezone_name',
    'get_current_timezone', 'get_current_timezone_name',
    'activate', 'deactivate', 'override',
    'is_naive', 'is_aware', 'make_aware', 'make_naive',
    'localtime', 'now',
    'is_aware', 'is_naive', 'make_aware', 'make_naive',
]