From 78954e07c6e690ee5bcc6cc0d2a88e0d1879c70a Mon Sep 17 00:00:00 2001 From: aandis Date: Wed, 13 Jan 2016 22:20:27 +0530 Subject: [PATCH] Fixed space --- tests/py/test_history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/py/test_history.py b/tests/py/test_history.py index f0eca54637..97b84471dc 100644 --- a/tests/py/test_history.py +++ b/tests/py/test_history.py @@ -69,7 +69,7 @@ def test_iter_payday_events(self): # Make all events in the same year. delta = '%s days' % (364 - (now - datetime(now.year, 1, 1)).days) - self.db.run(""" + self.db.run(""" UPDATE paydays SET ts_start = ts_start + interval %(delta)s , ts_end = ts_end + interval %(delta)s;