summaryrefslogtreecommitdiff
path: root/tests/reserved_names
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-03 14:22:21 -0400
committerTim Graham <timograham@gmail.com>2013-09-03 14:22:21 -0400
commit5649c0af9d90ba1368abbe6c233ee61c976c8137 (patch)
tree78df445094924d3ed21a236c694c503d3cc723f3 /tests/reserved_names
parentcb98ffe8f45d77a7e892fbb80b47de999062dc74 (diff)
Fixed "indentation is not a multiple of four" pep8 issues.
Diffstat (limited to 'tests/reserved_names')
-rw-r--r--tests/reserved_names/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/reserved_names/models.py b/tests/reserved_names/models.py
index 8e942b20e8..3a14165a32 100644
--- a/tests/reserved_names/models.py
+++ b/tests/reserved_names/models.py
@@ -21,8 +21,9 @@ class Thing(models.Model):
having = models.CharField(max_length=1)
where = models.DateField(max_length=1)
has_hyphen = models.CharField(max_length=1, db_column='has-hyphen')
+
class Meta:
- db_table = 'select'
+ db_table = 'select'
def __str__(self):
return self.when