Author: mtredinnick Date: 2008-11-30 20:21:33 -0600 (Sun, 30 Nov 2008) New Revision: 9538
Modified: django/trunk/django/core/management/commands/loaddata.py Log: Clean up the imports in loaddata.py to match other code whilst I'm in the neighbourhood. Modified: django/trunk/django/core/management/commands/loaddata.py =================================================================== --- django/trunk/django/core/management/commands/loaddata.py 2008-12-01 02:20:59 UTC (rev 9537) +++ django/trunk/django/core/management/commands/loaddata.py 2008-12-01 02:21:33 UTC (rev 9538) @@ -1,10 +1,12 @@ -from django.core.management.base import BaseCommand -from django.core.management.color import no_style -from optparse import make_option import sys import os -import bz2, gzip, zipfile +import gzip +import zipfile +from optparse import make_option +from django.core.management.base import BaseCommand +from django.core.management.color import no_style + try: set except NameError: --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---