This commit is contained in:
Nico Schottelius 2016-11-15 16:42:58 +01:00
parent 47dcde1562
commit f71a9e4fa0
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class DB(object):
@classmethod
def gps_query(cls, since="1 day"):
return csl("select payload from packets where payload like 'lat%' and received_dt > NOW() - '{}'::INTERVAL".format(since))
return cls("select payload from packets where payload like 'lat%' and received_dt > NOW() - '{}'::INTERVAL".format(since))
def __iter__(self):
try: