Author: gwilson
Date: 2007-10-13 13:33:03 -0500 (Sat, 13 Oct 2007)
New Revision: 6482
Modified:
django/trunk/django/core/management/base.py
Log:
Removed an unused import and a duplicate import.
Modified: django/trunk/django/core/management/base.py
===================================================================
--- django/trunk/django/core/management/base.py 2007-10-13 16:40:20 UTC (rev
6481)
+++ django/trunk/django/core/management/base.py 2007-10-13 18:33:03 UTC (rev
6482)
@@ -161,10 +161,8 @@
args = ''
def handle(self, *args, **options):
- from django.db import models
if len(args) != 0:
raise CommandError("Command doesn't accept any arguments")
-
return self.handle_noargs(**options)
def handle_noargs(self, **options):
@@ -182,7 +180,6 @@
* other_name - When copying an application layout, this should be the name
of the project.
"""
- import django
import re
import shutil
other = {'project': 'app', 'app': 'project'}[app_or_project]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---