summaryrefslogtreecommitdiff
path: root/tests/datetimes/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/datetimes/models.py')
-rw-r--r--tests/datetimes/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/datetimes/models.py b/tests/datetimes/models.py
index c8b64ae52a..9c8e5e6cd9 100644
--- a/tests/datetimes/models.py
+++ b/tests/datetimes/models.py
@@ -19,7 +19,7 @@ class Comment(models.Model):
approval_date = models.DateTimeField(null=True)
def __str__(self):
- return 'Comment to %s (%s)' % (self.article.title, self.pub_date)
+ return "Comment to %s (%s)" % (self.article.title, self.pub_date)
class Category(models.Model):