aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-10-04 03:03:52 +0000
committerRoger Dingledine <arma@torproject.org>2004-10-04 03:03:52 +0000
commitc97e4d8fed83fa1cf22590032be801eb81e6649b (patch)
tree4144619b59b0ce9c6950767396d3692103592cec
parent42d4c6daa211f0801c77cf6321f5bcc2200d8ab4 (diff)
downloadanonbib-c97e4d8fed83fa1cf22590032be801eb81e6649b.tar.gz
fix another traceback
-def getCachedURL(key, ftype): +def getCachedURL(key, ftype, section): svn:r113
-rw-r--r--updateCache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/updateCache.py b/updateCache.py
index cb2417a..ec41d0e 100644
--- a/updateCache.py
+++ b/updateCache.py
@@ -89,7 +89,7 @@ def getURLs(entry):
r[ftype] = url.strip().replace("\n", " ")
return r
-def getCachedURL(key, ftype):
+def getCachedURL(key, ftype, section):
fname = getCacheFname(key, ftype, section)
urlFname = fname+".url"
if not os.path.exists(fname) or not os.path.exists(urlFname):