Skip to content

Commit

Permalink
Use gnu_getopt(); Closes #13
Browse files Browse the repository at this point in the history
  • Loading branch information
pklapperich committed Jan 13, 2022
1 parent 39a7b82 commit f51e9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion woof
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def main ():
defaultmaxdown = maxdown

try:
options, filenames = getopt.getopt (sys.argv[1:], "hUszjZui:c:p:")
options, filenames = getopt.gnu_getopt (sys.argv[1:], "hUszjZui:c:p:")
except getopt.GetoptError as desc:
usage (defaultport, defaultmaxdown, desc)

Expand Down

0 comments on commit f51e9db

Please sign in to comment.