From 0e66c7adec18944494b3aff3372d24abb3786194 Mon Sep 17 00:00:00 2001 From: Joseph Kocherhans Date: Wed, 11 Jan 2006 23:47:32 +0000 Subject: [PATCH] magic-removal: removed bad import. django.models is gone as of [1919]. git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1921 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/core/management.py b/django/core/management.py index f65f62a46e..5d38b7f5a4 100644 --- a/django/core/management.py +++ b/django/core/management.py @@ -764,7 +764,6 @@ class ModelErrorCollection: def get_validation_errors(outfile): "Validates all installed models. Writes errors, if any, to outfile. Returns number of errors." - import django.models from django.db import models e = ModelErrorCollection(outfile) module_list = models.get_installed_model_modules()