From f87a4ec2bac3f1f83c2aa5707fc72a25bca8c4e9 Mon Sep 17 00:00:00 2001 From: spez Date: Thu, 5 Feb 2009 12:10:06 -0800 Subject: [PATCH] unicdoe! --- r2/r2/lib/utils/thing_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/lib/utils/thing_utils.py b/r2/r2/lib/utils/thing_utils.py index bc89e6146..6aff369c0 100644 --- a/r2/r2/lib/utils/thing_utils.py +++ b/r2/r2/lib/utils/thing_utils.py @@ -7,7 +7,7 @@ def make_last_modified(): return last_modified def last_modified_key(thing, action): - return 'last_' + action + '_' + thing._fullname + return 'last_%s_%s' % (str(action), thing._fullname) def is_modified_since(thing, action, date): """Returns true if the date is older than the last_[action] date,