summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2006-07-04 06:44:01 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2006-07-04 06:44:01 +0000
commit4a30eff1ff3be7dec76f6abeb2dcea0eac823319 (patch)
tree8712e1d11d8b79b3385b739334ace0f16ba9d1e4
parent5ac919b71169772768eb3ac3c5506c8c31644e73 (diff)
Trivial indentation fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3274 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/models/base.py8
1 files 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):