From fd292d340eb545a086205aec4d5067c0ba7769ac Mon Sep 17 00:00:00 2001 From: Gary Wilson Jr Date: Sat, 13 Oct 2007 18:33:03 +0000 Subject: [PATCH] Removed an unused import and a duplicate import. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6482 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management/base.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/django/core/management/base.py b/django/core/management/base.py index 5d7608382a..7a06b86936 100644 --- a/django/core/management/base.py +++ b/django/core/management/base.py @@ -161,10 +161,8 @@ class NoArgsCommand(BaseCommand): 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 @@ def copy_helper(style, app_or_project, name, directory, other_name=''): * 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]