Commit 6275e577 by Michael DeHaan

pyflakes: Unused import / unused var

parent d86dad76
......@@ -21,7 +21,6 @@
import sys
import getpass
import shlex
import time
from optparse import OptionParser
......
......@@ -113,7 +113,7 @@ class ParamikoConnection(object):
# print "waiting on %s" % result_file
time.sleep(1)
try:
stat = sftp.stat(result_file)
sftp.stat(result_file)
break
except IOError:
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