diff options
author | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2007-01-30 03:03:46 (GMT) |
commit | f733abb7831d6566cb0fccd0550d58ec3b7f05a4 (patch) | |
tree | 4466e9eccc1b441e60841c16d48915f20216178e /Lib/ftplib.py | |
parent | 15c1fe5047f94942f1e784ac7614f9f5370adb47 (diff) | |
download | cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.zip cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.gz cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/ftplib.py')
-rw-r--r-- | Lib/ftplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 9cb67dd..9dce22b 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -332,7 +332,7 @@ class FTP: # 1xx or error messages for LIST), so we just discard # this response. if resp[0] == '2': - resp = self.getresp() + resp = self.getresp() if resp[0] != '1': raise error_reply, resp else: @@ -342,7 +342,7 @@ class FTP: resp = self.sendcmd(cmd) # See above. if resp[0] == '2': - resp = self.getresp() + resp = self.getresp() if resp[0] != '1': raise error_reply, resp conn, sockaddr = sock.accept() |