mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
pyflakes: Unused import / unused var
This commit is contained in:
parent
d86dad76ba
commit
6275e57718
2 changed files with 1 additions and 2 deletions
|
@ -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):
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in a new issue