diff options
| author | Tim Graham <timograham@gmail.com> | 2013-10-02 09:46:47 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-10-02 10:01:48 -0400 |
| commit | dc26f3fc9bb1385c483637c04f0dca04b42fcfcb (patch) | |
| tree | 96a9d36cae5d23de5ce9b11b627b385dab39175a | |
| parent | e5b0f5b95d49c33f5431cf4060705b5e59ec69d4 (diff) | |
[1.6.x] Fixed Python 2.6 compatability for 3ec368014d0d74e14a7ed98ccfd638ffe0e62863.
| -rw-r--r-- | tests/i18n/commands/extraction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/i18n/commands/extraction.py b/tests/i18n/commands/extraction.py index c373d29031..035dd53a10 100644 --- a/tests/i18n/commands/extraction.py +++ b/tests/i18n/commands/extraction.py @@ -4,7 +4,6 @@ from __future__ import unicode_literals import os import re import shutil -from unittest import SkipTest import warnings from django.core import management @@ -14,6 +13,7 @@ from django.utils._os import upath from django.utils import six from django.utils.six import StringIO from django.utils.translation import TranslatorCommentWarning +from django.utils.unittest import SkipTest LOCALE='de' |
