Skip to content

Commit

Permalink
follow-on to #186
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl committed Jun 25, 2022
1 parent 52e7897 commit 046638c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apis/python/tools/ingestor
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def ingest_one(
vfs = tiledb.VFS()
if not vfs.is_file(input_path):
# Print this neatly and exit neatly, to avoid a multi-line stack trace otherwise.
logging.error(f"Input path not found: {input_path}", file=sys.stderr)
logging.error(f"Input path not found: {input_path}")
sys.exit(1)

# Prepare to write the output.
Expand Down
2 changes: 1 addition & 1 deletion apis/python/tools/outgestor
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main():
vfs = tiledb.VFS()
if not vfs.is_dir(input_path):
# Print this neatly and exit neatly, to avoid a multi-line stack trace otherwise.
logging.error(f"Input path not found: {input_path}", file=sys.stderr)
logging.error(f"Input path not found: {input_path}")
sys.exit(1)

# This is for local-disk use only -- for S3-backed tiledb://... URIs we should
Expand Down

0 comments on commit 046638c

Please sign in to comment.