summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2013-06-26 23:47:52 -0400
committerDonald Stufft <donald@stufft.io>2013-06-26 23:47:52 -0400
commit0f9f34e4b7072b0feaaced84119330096f4828bf (patch)
treea18aca284bb2387b83086d84c825384a4db7e2a4
parent471874691f8cf8011b39ad1092688ceea03beebc (diff)
downloaddecorator-0f9f34e4b7072b0feaaced84119330096f4828bf.tar.gz
Fix the search key
-rw-r--r--webui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index 84c9cdc..e594819 100644
--- a/webui.py
+++ b/webui.py
@@ -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)