From 4a30eff1ff3be7dec76f6abeb2dcea0eac823319 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 4 Jul 2006 06:44:01 +0000 Subject: [PATCH] Trivial indentation fix. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3274 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/base.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/django/db/models/base.py b/django/db/models/base.py index 09e8eb3fc0..442220abd4 100644 --- a/django/db/models/base.py +++ b/django/db/models/base.py @@ -60,10 +60,10 @@ class ModelBase(type): new_class._prepare() register_models(new_class._meta.app_label, new_class) - # Because of the way imports happen (recursively), we may or may not be - # the first class for this model to register with the framework. There - # should only be one class for each model, so we must always return the - # registered version. + # Because of the way imports happen (recursively), we may or may not be + # the first class for this model to register with the framework. There + # should only be one class for each model, so we must always return the + # registered version. return get_model(new_class._meta.app_label, name) class Model(object):