summaryrefslogtreecommitdiff
path: root/tests/validation
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-10-22 09:31:43 -0400
committerTim Graham <timograham@gmail.com>2013-10-22 09:51:39 -0400
commit1597503a017a9ced422a81d314cb4097d53c3dfd (patch)
treee5883611fb6d928482d24db1c4d796126250fef4 /tests/validation
parent0d0f4f020afe516f23fd2305f13ff0a6a539b344 (diff)
downloaddjango-1597503a017a9ced422a81d314cb4097d53c3dfd.tar.gz
Fixed E221 pep8 warnings.
Diffstat (limited to 'tests/validation')
-rw-r--r--tests/validation/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/models.py b/tests/validation/models.py
index 958740dd2d..ee5bcfc9aa 100644
--- a/tests/validation/models.py
+++ b/tests/validation/models.py
@@ -50,7 +50,7 @@ class UniqueForDateModel(models.Model):
name = models.CharField(max_length=100)
class CustomMessagesModel(models.Model):
- other = models.IntegerField(blank=True, null=True)
+ other = models.IntegerField(blank=True, null=True)
number = models.IntegerField(db_column='number_val',
error_messages={'null': 'NULL', 'not42': 'AAARGH', 'not_equal': '%s != me'},
validators=[validate_answer_to_universe]