sys.exti(1)

This commit is contained in:
bongbui321 2024-04-17 17:19:17 -04:00
parent f58350f784
commit 60d2696225

5
edl
View file

@ -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__':