Skip to content

Commit

Permalink
Merge branch 'master' into less_verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler authored Apr 24, 2024
2 parents 0886608 + 2ed24c0 commit e0ed689
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions edl
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,13 @@ class main(metaclass=LogBase):
options = parse_option(args)
if cmd != "":
self.info("Trying to connect to firehose loader ...")
if fh.connect(sahara, verbose=verbose):
fh.handle_firehose(cmd, options, verbose)

if fh.connect(sahara):
if not fh.handle_firehose(cmd, options):
sys.exit(1)
else:
sys.exit(1)


if __name__ == '__main__':
base = main()
base.run()

0 comments on commit e0ed689

Please sign in to comment.