diff options
Diffstat (limited to 'func/env_setup.py')
-rw-r--r-- | func/env_setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/func/env_setup.py b/func/env_setup.py index 5676d05b..9fd7c106 100644 --- a/func/env_setup.py +++ b/func/env_setup.py @@ -59,7 +59,7 @@ class Env_setup(): os.system(ssh_c) ssh_cmd = './data/qtip_creds.sh {0}'.format(ipvar) print ssh_cmd - res = os.system(ssh_cmd) + res = os.system(ssh_cmd) for infinity in range(100): try : ssh = paramiko.SSHClient() @@ -70,7 +70,7 @@ class Env_setup(): break except: print 'Retrying aSSH' - time.sleep(1) + time.sleep(1) if v == '': print ('SSH->>>>>', k) ssh_c = 'ssh-keyscan {0} >> ~/.ssh/known_hosts'.format(k) |