Skip to content

Commit

Permalink
ssins print_exception
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v-null committed Oct 15, 2024
1 parent 65ccbb9 commit 4c5880b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion demo/04_ssins.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from itertools import groupby
import re
import time
import traceback
from pathlib import Path
import pandas as pd

Expand Down Expand Up @@ -677,7 +678,8 @@ def main():

try:
base = read_select(ss, args)
except ValueError:
except ValueError as exc:
traceback.print_exception(exc)
parser.print_usage()
exit(1)

Expand Down

0 comments on commit 4c5880b

Please sign in to comment.