Django

Code

Changeset 9538

Show
Ignore:
Timestamp:
11/30/08 20:21:33 (1 month ago)
Author:
mtredinnick
Message:

Clean up the imports in loaddata.py to match other code whilst I'm in the neighbourhood.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/core/management/commands/loaddata.py

    r9537 r9538  
     1import sys 
     2import os 
     3import gzip 
     4import zipfile 
     5from optparse import make_option 
     6 
    17from django.core.management.base import BaseCommand 
    28from django.core.management.color import no_style 
    3 from optparse import make_option 
    4 import sys 
    5 import os 
    6 import bz2, gzip, zipfile 
    79 
    810try: