diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2004-05-10 07:35:33 +0000 |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2004-05-10 07:35:33 +0000 |
commit | c533c986e8c2a009d3eb49a44c1b6de28fcd982c (patch) | |
tree | a02009a42c039fcd3869ae293040d2456ed9d4a1 /Lib/urllib2.py | |
parent | d2856008839aa2dd06893701db6be2333eef5f24 (diff) | |
download | cpython-git-c533c986e8c2a009d3eb49a44c1b6de28fcd982c.tar.gz |
Fix [ 738973 ] urllib2 CacheFTPHandler doesn't work on multiple dirs, as
implemented in patch [ 851736 ].
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r-- | Lib/urllib2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py index 1984cf294b..773cd7de82 100644 --- a/Lib/urllib2.py +++ b/Lib/urllib2.py @@ -1168,7 +1168,7 @@ class CacheFTPHandler(FTPHandler): self.max_conns = m def connect_ftp(self, user, passwd, host, port, dirs): - key = user, passwd, host, port + key = user, host, port, '/'.join(dirs) if key in self.cache: self.timeout[key] = time.time() + self.delay else: |