if else not return

pull/1/head
Nguyen Huu Thuong 5 years ago
parent 604f25d794
commit 366e654a7c

@ -113,22 +113,24 @@ def processes():
if not INPUT_FIRST_SSH: if not INPUT_FIRST_SSH:
print("SSH-SCP-SSH no first_ssh input found") print("SSH-SCP-SSH no first_ssh input found")
return else:
print("+++++++++++++++++++Pipeline: RUNNING FIRST SSH+++++++++++++++++++") print("+++++++++++++++++++Pipeline: RUNNING FIRST SSH+++++++++++++++++++")
connect(lambda c: ssh_process(c, INPUT_FIRST_SSH)) connect(lambda c: ssh_process(c, INPUT_FIRST_SSH))
if not INPUT_SCP: if not INPUT_SCP:
print("SSH-SCP-SSH no scp input found") print("SSH-SCP-SSH no scp input found")
return else:
print("+++++++++++++++++++Pipeline: RUNNING SCP+++++++++++++++++++") print("+++++++++++++++++++Pipeline: RUNNING SCP+++++++++++++++++++")
connect(lambda c: scp_process(c, INPUT_SCP)) connect(lambda c: scp_process(c, INPUT_SCP))
if not INPUT_LAST_SSH: if not INPUT_LAST_SSH:
print("SSH-SCP-SSH no last_ssh input found") print("SSH-SCP-SSH no last_ssh input found")
return else:
print("+++++++++++++++++++Pipeline: RUNNING LAST SSH+++++++++++++++++++") print("+++++++++++++++++++Pipeline: RUNNING LAST SSH+++++++++++++++++++")
connect(lambda c: ssh_process(c, INPUT_LAST_SSH)) connect(lambda c: ssh_process(c, INPUT_LAST_SSH))
pass
if __name__ == '__main__': if __name__ == '__main__':
processes() processes()

Loading…
Cancel
Save