Skip to content

Commit 046638c

Browse files
committed
follow-on to #186
1 parent 52e7897 commit 046638c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apis/python/tools/ingestor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def ingest_one(
190190
vfs = tiledb.VFS()
191191
if not vfs.is_file(input_path):
192192
# Print this neatly and exit neatly, to avoid a multi-line stack trace otherwise.
193-
logging.error(f"Input path not found: {input_path}", file=sys.stderr)
193+
logging.error(f"Input path not found: {input_path}")
194194
sys.exit(1)
195195

196196
# Prepare to write the output.

apis/python/tools/outgestor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def main():
6767
vfs = tiledb.VFS()
6868
if not vfs.is_dir(input_path):
6969
# Print this neatly and exit neatly, to avoid a multi-line stack trace otherwise.
70-
logging.error(f"Input path not found: {input_path}", file=sys.stderr)
70+
logging.error(f"Input path not found: {input_path}")
7171
sys.exit(1)
7272

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

0 commit comments

Comments
 (0)