Merge pull request #132 from cclauss/patch-2

ftp.py: Undefined name local_ip --> self.local_ip
This commit is contained in:
Daniel Goldberg 2018-05-08 19:06:44 +03:00 committed by GitHub
commit 4d7cff9fdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class FTPServer(threading.Thread):
def PASV(self,cmd):
self.pasv_mode = True
self.servsock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
self.servsock.bind((local_ip,0))
self.servsock.bind((self.local_ip,0))
self.servsock.listen(1)
ip, port = self.servsock.getsockname()
self.conn.send('227 Entering Passive Mode (%s,%u,%u).\r\n' %