summaryrefslogtreecommitdiff
path: root/tests/datatypes/tests.py
diff options
context:
space:
mode:
authorcoagulant <baryshev@gmail.com>2013-11-03 01:02:56 +0400
committerTim Graham <timograham@gmail.com>2013-11-02 18:20:39 -0400
commit3bc0d46a840f17dce561daca8a6b8690b2cf5d0a (patch)
treec25954abbde0c4c06af7f862effcd351047cddf9 /tests/datatypes/tests.py
parent2a03a9a9a1c4517be75e72899e545b0bc9dd0688 (diff)
Fixed all E261 warnings
Diffstat (limited to 'tests/datatypes/tests.py')
-rw-r--r--tests/datatypes/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/datatypes/tests.py b/tests/datatypes/tests.py
index 41e8a2d5d3..3cd954d3ad 100644
--- a/tests/datatypes/tests.py
+++ b/tests/datatypes/tests.py
@@ -37,7 +37,7 @@ class DataTypesTestCase(TestCase):
self.assertEqual(d2.consumed_at, datetime.datetime(2007, 4, 20, 16, 19, 59))
def test_time_field(self):
- #Test for ticket #12059: TimeField wrongly handling datetime.datetime object.
+ # Test for ticket #12059: TimeField wrongly handling datetime.datetime object.
d = Donut(name='Apple Fritter')
d.baked_time = datetime.datetime(year=2007, month=4, day=20, hour=16, minute=19, second=59)
d.save()