Skip to content

Commit

Permalink
grammaer fix
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v authored Apr 4, 2023
1 parent 177c907 commit 8771651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uro/uro.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
parser = argparse.ArgumentParser()
parser.add_argument('-i', help='file containing urls', dest='input_file')
parser.add_argument('-o', help='output file', dest='output_file')
parser.add_argument('-w', '--whitelist', help='only keep these extension and extension-less urls', dest='whitelist', nargs='+')
parser.add_argument('-w', '--whitelist', help='only keep these extensions and extensionless urls', dest='whitelist', nargs='+')
parser.add_argument('-b', '--blacklist', help='remove these extensions', dest='blacklist', nargs='+')
parser.add_argument('-f', '--filters', help='additional filters, read docs', dest='filters', nargs='+')
args = parser.parse_args()
Expand Down

0 comments on commit 8771651

Please sign in to comment.