aboutsummaryrefslogtreecommitdiffstats
path: root/updateCache.py
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2003-09-09 00:58:39 +0000
committerNick Mathewson <nickm@torproject.org>2003-09-09 00:58:39 +0000
commitb569263f121ba0db041674510dc726d18d081c23 (patch)
treeb773ed039b88d2c9017cc8b951223d1843f8b17a /updateCache.py
parentc666e2e0794ba284b5a0c0f17d54c4a3233ea187 (diff)
downloadanonbib-b569263f121ba0db041674510dc726d18d081c23.tar.gz
Debug caching on errors; improve look of generated pages.
svn:r68
Diffstat (limited to 'updateCache.py')
-rw-r--r--updateCache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/updateCache.py b/updateCache.py
index 5edda3d..75999d0 100644
--- a/updateCache.py
+++ b/updateCache.py
@@ -120,7 +120,7 @@ def downloadAll(bibtex, missingOnly=0):
downloadFile(key, ftype, url)
print "Downloaded",url
except UIError, e:
- print >>sys,stderr, str(e)
+ print >>sys.stderr, str(e)
errors.append((key,ftype,url,str(e)))
except (IOError, socket.error), e:
msg = "Error downloading %s: %s"%(url,str(e))