commit | 1bd93a754fc0f9a801c982ab1bb3a8ee0d9d77b6 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Oct 31 19:58:07 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Oct 31 19:58:07 2010 +0000 |
tree | d7cf15e200fec3679b5967e21c51a682e70ffb77 | |
parent | d5df36d378054b0c9bcd5ac0f26e2c3786ffd30c [diff] [blame] |
fix ftplib resource warnings
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 50dbacc..22b5fd2 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py
@@ -361,6 +361,7 @@ conn, sockaddr = sock.accept() if self.timeout is not _GLOBAL_DEFAULT_TIMEOUT: conn.settimeout(self.timeout) + sock.close() if resp[:3] == '150': # this is conditional in case we received a 125 size = parse150(resp)