mirror of https://github.com/django/django.git
Trivial indentation fix.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3274 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
5ac919b711
commit
4a30eff1ff
|
@ -60,10 +60,10 @@ class ModelBase(type):
|
||||||
new_class._prepare()
|
new_class._prepare()
|
||||||
|
|
||||||
register_models(new_class._meta.app_label, new_class)
|
register_models(new_class._meta.app_label, new_class)
|
||||||
# Because of the way imports happen (recursively), we may or may not be
|
# 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
|
# 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
|
# should only be one class for each model, so we must always return the
|
||||||
# registered version.
|
# registered version.
|
||||||
return get_model(new_class._meta.app_label, name)
|
return get_model(new_class._meta.app_label, name)
|
||||||
|
|
||||||
class Model(object):
|
class Model(object):
|
||||||
|
|
Loading…
Reference in New Issue