Skip to content

Commit

Permalink
get: Fix regression.
Browse files Browse the repository at this point in the history
  • Loading branch information
wwood committed Jan 11, 2024
1 parent 20e8e98 commit 673d483
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kingfisher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def download_from_aws(odp_link, run_identifier, download_threads, method):
else:
raise Exception("Programming error")

if len(output_files) == 0:
if not stdout and len(output_files) == 0:
raise Exception("No output files found, something went amiss, unsure what.")

logging.info("Output files: {}".format(', '.join(output_files)))
Expand Down

0 comments on commit 673d483

Please sign in to comment.