Skip to content

Commit 7d8e8b3

Browse files
authored
Merge pull request #333 from frsche/master
Fix argument parsing of the command line utility
2 parents f660f66 + ef4a407 commit 7d8e8b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tabulate/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2816,8 +2816,8 @@ def _main():
28162816
try:
28172817
opts, args = getopt.getopt(
28182818
sys.argv[1:],
2819-
"h1o:s:F:A:f:",
2820-
["help", "header", "output", "sep=", "float=", "int=", "align=", "format="],
2819+
"h1o:s:F:I:f:",
2820+
["help", "header", "output=", "sep=", "float=", "int=", "colalign=", "format="],
28212821
)
28222822
except getopt.GetoptError as e:
28232823
print(e)

0 commit comments

Comments
 (0)