summaryrefslogtreecommitdiff
path: root/tests/regressiontests/comment_tests/models.py
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-07-13 09:35:51 +0000
committerJannis Leidel <jannis@leidel.info>2011-07-13 09:35:51 +0000
commit24f4764a48e4141923a78c8820e4cd7b411ec0fc (patch)
treeeed2e98eb3aad1e10c7fda902bc8b875e19929e2 /tests/regressiontests/comment_tests/models.py
parent956da729d19d619c210a2466d4435d4967249e7f (diff)
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for the work on the patch and Alex for reviewing.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/comment_tests/models.py')
-rw-r--r--tests/regressiontests/comment_tests/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/comment_tests/models.py b/tests/regressiontests/comment_tests/models.py
index 8877ea1155..dc6c842ab6 100644
--- a/tests/regressiontests/comment_tests/models.py
+++ b/tests/regressiontests/comment_tests/models.py
@@ -30,5 +30,5 @@ class Entry(models.Model):
return self.title
class Book(models.Model):
- dewey_decimal = models.DecimalField(primary_key = True, decimal_places=2, max_digits=5)
+ dewey_decimal = models.DecimalField(primary_key=True, decimal_places=2, max_digits=5)
\ No newline at end of file