Commit 2a0039ba authored by Baptiste Mispelon's avatar Baptiste Mispelon
Browse files

Fixed Python2.6 incompatibility caused by 67c30426.

parent bdde6f6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
from __future__ import absolute_import

import datetime
from unittest import skipIf

try:
    import pytz
@@ -11,6 +10,7 @@ except ImportError:
from django.test import TestCase
from django.test.utils import override_settings
from django.utils import timezone
from django.utils.unittest import skipIf


from .models import Article, Comment, Category