monkey/infection_monkey/transport
cclauss 023c7cb093
ftp.py: Undefined name local_ip --> self.local_ip
__local_ip__ is an __undefined name__ in this context (could raise NameError at runtime) so this PR recommends the use of __self.local_ip__ instead.  

flake8 testing of https://github.com/guardicore/monkey on Python 3.6.3

$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
./infection_monkey/transport/ftp.py:86:29: F821 undefined name 'local_ip'
        self.servsock.bind((local_ip,0))
                            ^
```
2018-05-08 12:23:30 +02:00
..
__init__.py rename chaos_monkey folder to infection_monkey 2018-02-19 11:35:34 +02:00
base.py rename chaos_monkey folder to infection_monkey 2018-02-19 11:35:34 +02:00
ftp.py ftp.py: Undefined name local_ip --> self.local_ip 2018-05-08 12:23:30 +02:00
http.py New style exceptions, has_key(), and types 2018-05-07 16:24:11 +02:00
tcp.py New style exceptions, has_key(), and types 2018-05-07 16:24:11 +02:00