summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@rd.io>2013-04-04 15:16:16 -0700
committerAlex Gaynor <alex.gaynor@rd.io>2013-04-04 15:16:16 -0700
commit1aca9d93beaac9f5e37cd90d1e29e572b5f7a86d (patch)
tree56f3dd84a62489f1f5e65ecd8589f9487fc76368
parentce23e33399a8a21a87de94bfbf12ae57f833b52c (diff)
Fixed a line that was overindented.
-rw-r--r--django/db/models/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index 005e089598..1a8e32d49f 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -163,7 +163,7 @@ class ModelBase(type):
else:
base = parent
if base is None:
- raise TypeError("Proxy model '%s' has no non-abstract model base class." % name)
+ raise TypeError("Proxy model '%s' has no non-abstract model base class." % name)
if (new_class._meta.local_fields or
new_class._meta.local_many_to_many):
raise FieldError("Proxy model '%s' contains model fields." % name)