Skip to content

Commit

Permalink
Merge pull request #333 from frsche/master
Browse files Browse the repository at this point in the history
Fix argument parsing of the command line utility
  • Loading branch information
astanin authored Sep 26, 2024
2 parents f660f66 + ef4a407 commit 7d8e8b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tabulate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2816,8 +2816,8 @@ def _main():
try:
opts, args = getopt.getopt(
sys.argv[1:],
"h1o:s:F:A:f:",
["help", "header", "output", "sep=", "float=", "int=", "align=", "format="],
"h1o:s:F:I:f:",
["help", "header", "output=", "sep=", "float=", "int=", "colalign=", "format="],
)
except getopt.GetoptError as e:
print(e)
Expand Down

0 comments on commit 7d8e8b3

Please sign in to comment.