mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 11:05:05 -05:00
sys.exti(1)
This commit is contained in:
parent
f58350f784
commit
60d2696225
1 changed files with 4 additions and 1 deletions
5
edl
5
edl
|
@ -379,7 +379,10 @@ class main(metaclass=LogBase):
|
|||
if cmd != "":
|
||||
self.info("Trying to connect to firehose loader ...")
|
||||
if fh.connect(sahara):
|
||||
fh.handle_firehose(cmd, options)
|
||||
if not fh.handle_firehose(cmd, options):
|
||||
sys.exit(1)
|
||||
else:
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue