Skip to content

Commit

Permalink
Trivial indentation fix.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3274 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Jul 4, 2006
1 parent 5ac919b commit 4a30eff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions django/db/models/base.py
Expand Up @@ -60,10 +60,10 @@ def __new__(cls, name, bases, attrs):
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):
Expand Down

0 comments on commit 4a30eff

Please sign in to comment.