diff options
| author | Donald Stufft <donald@stufft.io> | 2013-06-26 23:47:52 -0400 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2013-06-26 23:47:52 -0400 |
| commit | 0f9f34e4b7072b0feaaced84119330096f4828bf (patch) | |
| tree | a18aca284bb2387b83086d84c825384a4db7e2a4 | |
| parent | 471874691f8cf8011b39ad1092688ceea03beebc (diff) | |
| download | decorator-0f9f34e4b7072b0feaaced84119330096f4828bf.tar.gz | |
Fix the search key
| -rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ PRECISIONS = [ ("daily", "%y-%m-%d"), ] def make_key(precision, datetime, key): - return "downloads:%s:%s:%s:*" % ( + return "downloads:%s:%s:%s" % ( precision[0], datetime.strftime(precision[1]), key) |
