Fixed #21873 -- Removed duplicate import.

Thanks Sephi for the report.
This commit is contained in:
Aymeric Augustin 2014-01-25 23:22:03 +01:00
parent 798fd59fad
commit ee4b806a85
1 changed files with 1 additions and 2 deletions

View File

@ -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