Skip to content

Commit

Permalink
add message about using --debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Mar 25, 2022
1 parent e1a1975 commit d9d3bff
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sourmash/sig/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ def manifest(args):
yield_all_files=args.force)
except ValueError as exc:
error(f"Cannot open '{args.location}' as a sourmash signature collection.")
error("Use -d/--debug for details.")
sys.exit(-1)

rebuild = True
Expand Down Expand Up @@ -1211,6 +1212,7 @@ def fileinfo(args):
yield_all_files=args.force)
except ValueError:
error(f"Cannot open '{args.path}' as a sourmash signature collection.")
error("Use -d/--debug for details.")
sys.exit(-1)

print_bool = lambda x: "yes" if x else "no"
Expand Down

0 comments on commit d9d3bff

Please sign in to comment.