diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-09-27 22:04:16 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-09-27 22:04:16 (GMT) |
commit | 3a53fbbfcf2785ff5ed738a0e592973a7dae1dfc (patch) | |
tree | a0c0f6672fed1c38d187170201e95bceeeeeb04a /Lib/ftplib.py | |
parent | be17a117211a4e4cc08573852fedebd5a74d0229 (diff) | |
download | cpython-3a53fbbfcf2785ff5ed738a0e592973a7dae1dfc.zip cpython-3a53fbbfcf2785ff5ed738a0e592973a7dae1dfc.tar.gz cpython-3a53fbbfcf2785ff5ed738a0e592973a7dae1dfc.tar.bz2 |
#3911 FTP.makeport was giving bad port numbers
reviewed by Benjamin and Antoine
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index c75b317..42f2bff 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -254,7 +254,7 @@ class FTP: port number. ''' hbytes = host.split('.') - pbytes = [repr(port/256), repr(port%256)] + pbytes = [repr(port//256), repr(port%256)] bytes = hbytes + pbytes cmd = 'PORT ' + ','.join(bytes) return self.voidcmd(cmd) |