Commit 6275e577 by Michael DeHaan

pyflakes: Unused import / unused var

parent d86dad76
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
import sys import sys
import getpass import getpass
import shlex
import time import time
from optparse import OptionParser from optparse import OptionParser
......
...@@ -113,7 +113,7 @@ class ParamikoConnection(object): ...@@ -113,7 +113,7 @@ class ParamikoConnection(object):
# print "waiting on %s" % result_file # print "waiting on %s" % result_file
time.sleep(1) time.sleep(1)
try: try:
stat = sftp.stat(result_file) sftp.stat(result_file)
break break
except IOError: except IOError:
pass pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment