Skip to content

Commit

Permalink
fix: add help message to unsupported formats for igneous image create
Browse files Browse the repository at this point in the history
Resolves #168
  • Loading branch information
william-silversmith committed Feb 7, 2024
1 parent 55e6828 commit 4bc8797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion igneous_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ def create(
file = h5py.File(src, 'r')
arr = np.array(file[h5_dataset])
else:
print("Format not supported.")
print(f"Format not supported: {ext}")
return

CloudVolume.from_numpy(
Expand Down

0 comments on commit 4bc8797

Please sign in to comment.