summaryrefslogtreecommitdiff
path: root/tests/save_delete_hooks
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-30 12:11:05 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-30 12:11:05 -0700
commit778ce245dd466bce1b19f89e52cf9ed8f1b46513 (patch)
tree2de2ad5574c99a5918eb35d9bbb6d7c4fdd86ed7 /tests/save_delete_hooks
parent92dbf342868e68dfe60569c60dd5aa5925194221 (diff)
downloaddjango-778ce245dd466bce1b19f89e52cf9ed8f1b46513.tar.gz
Corrected many style guide violations that the newest version of flake8 catches
Diffstat (limited to 'tests/save_delete_hooks')
-rw-r--r--tests/save_delete_hooks/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/save_delete_hooks/models.py b/tests/save_delete_hooks/models.py
index a6e1abfb77..abba693778 100644
--- a/tests/save_delete_hooks/models.py
+++ b/tests/save_delete_hooks/models.py
@@ -24,7 +24,7 @@ class Person(models.Model):
def save(self, *args, **kwargs):
self.data.append("Before save")
- # Call the "real" save() method
+ # Call the "real" save() method
super(Person, self).save(*args, **kwargs)
self.data.append("After save")