From 15e86170d9eb94c2fdbeb7ea617cdabfc50a0d94 Mon Sep 17 00:00:00 2001 From: Richard Chapman Date: Thu, 9 Nov 2017 14:55:45 +0000 Subject: [PATCH] Changed timezone back Reverted back the timezoe change that was made in error and was making two tests fail. --- app/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils.py b/app/utils.py index ffb628284..49f6d61dc 100644 --- a/app/utils.py +++ b/app/utils.py @@ -71,7 +71,7 @@ def get_london_month_from_utc_column(column): """ return func.date_trunc( "month", - func.timezone("Europe/London", column) + func.timezone("Europe/London", func.timezone("UTC", column)) )