testing_21

21
This commit is contained in:
psycho 2020-08-13 22:08:00 +02:00
parent a883f52242
commit 95603add11

View File

@ -103,7 +103,7 @@ def parse_args():
err(arg, 5) err(arg, 5)
git_path = arg git_path = arg
elif opt in ('-l', '--sftp_path'): elif opt in ('-l', '--sftp_path'):
git_path = arg sftp_path = arg
elif opt in ('-d', '--debug'): elif opt in ('-d', '--debug'):
debug = True debug = True
else: else:
@ -118,6 +118,7 @@ def parse_args():
param['sftp_passwd'] = sftp_passwd param['sftp_passwd'] = sftp_passwd
param['known_hosts'] = known_hosts param['known_hosts'] = known_hosts
param['git_path'] = git_path param['git_path'] = git_path
param['sftp_path'] = sftp_path
param['debug'] = debug param['debug'] = debug
return param return param