summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-01-25 23:22:03 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-01-25 23:22:03 +0100
commitee4b806a851f6f7ad121899ed246dbcd7353ca75 (patch)
tree47ef8e6595bb2456f513d75634c2a9652944eefc
parent798fd59fad241ca8e48ba2a4526935b92736d30d (diff)
downloaddjango-ee4b806a851f6f7ad121899ed246dbcd7353ca75.tar.gz
Fixed #21873 -- Removed duplicate import.
Thanks Sephi for the report.
-rw-r--r--django/core/management/base.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/django/core/management/base.py b/django/core/management/base.py
index 5ac1cdf38d..a6f67a8187 100644
--- a/django/core/management/base.py
+++ b/django/core/management/base.py
@@ -1,12 +1,11 @@
# -*- coding: utf-8 -*-
+
from __future__ import unicode_literals
"""
Base classes for writing management commands (named commands which can
be executed through ``django-admin.py`` or ``manage.py``).
-
"""
-from __future__ import unicode_literals
import os
import sys