Browse Source

Fix datetime usage, indexing.

pull/15/head
Ben Kurtovic 11 years ago
parent
commit
4e4f0bb783
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      tasks/afc_statistics.py

+ 3
- 2
tasks/afc_statistics.py View File

@@ -655,8 +655,9 @@ class AFCStatistics(Task):
ORDER BY ABS(rev_timestamp - ?) ASC LIMIT 1""" ORDER BY ABS(rev_timestamp - ?) ASC LIMIT 1"""
result = self.site.sql_query(query, (pageid, user, stamp, stamp)) result = self.site.sql_query(query, (pageid, user, stamp, stamp))
try: try:
return user, stamp, list(result)[0]
except IndexError:
dtime = datetime.strptime(stamp, "%Y%m%d%H%M%S")
return user, dtime, list(result)[0][0]
except (ValueError, IndexError):
return None return None


def _search_history(self, pageid, chart, search_with, search_without): def _search_history(self, pageid, chart, search_with, search_without):


Loading…
Cancel
Save