remove using self in a static method

This commit is contained in:
Martin Konecny 2013-02-01 01:40:48 -05:00
parent f145ede01b
commit 149b744ba7
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class PypoFetch(Thread):
try:
lock.acquire()
tn = telnetlib.Telnet(LS_HOST, LS_PORT)
self.logger.info(command)
logger.info(command)
tn.write(command)
tn.write('exit\n')
tn.read_all()