]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fixed a bug created by removing module 'string'.
authorOleg Broytman <phd@phdru.name>
Mon, 31 Dec 2007 20:51:12 +0000 (20:51 +0000)
committerOleg Broytman <phd@phdru.name>
Mon, 31 Dec 2007 20:51:12 +0000 (20:51 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@154 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Robots/bkmk_rsimple.py

index 96135824be74d83867458e0b0af73caf2df5687a..ea2decec8b82ee78ebb6d3dedc2cd5ee5b5dd435 100644 (file)
@@ -80,7 +80,7 @@ class myftpwrapper(urllib_ftpwrapper):
    def __init__(self, user, passwd, host, port, dirs):
       urllib_ftpwrapper.__init__(self, user, passwd, host, port, dirs)
       global ftpcache_key
-      ftpcache_key = (user, host, port, tuple(dirs))
+      ftpcache_key = (user, host, port, '/'.join(dirs))
 
 urllib.ftpwrapper = myftpwrapper