Skip to content

Commit

Permalink
Fix typo in CLI usage printout
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknyquist committed Dec 12, 2023
1 parent 72ccc9e commit 134acbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ package to provide some monitoring capabilities at the command line:
-h, --help show this help message and exit
-a ADDRESS, --address ADDRESS
Adds an IPv4 or Ipv6 address range to look for. Any
anonymous edits made by IPv4 addresses in this range
anonymous edits made by IP addresses in this range
will be displayed. Each dot-separated field (for IPv4
addresses) or colon-separated field (for IPv6 addresses)
may be optionally replaced with with an asterisk (which
Expand Down
2 changes: 1 addition & 1 deletion wikichangewatcher/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def _main():
formatter_class=lambda prog: argparse.RawDescriptionHelpFormatter(prog, width=80))

parser.add_argument('-a', '--address', action='append', default=None, help=('Adds an IPv4 or Ipv6 address range to '
'look for. Any anonymous edits made by IPv4 addresses in this range will be displayed. '
'look for. Any anonymous edits made by IP addresses in this range will be displayed. '
'Each dot-separated field (for IPv4 addresses) or colon-separated field (for IPv6 addresses) '
'may be optionally replaced with with an asterisk (which acts as a wildcard, matching any '
'value), or a range of values. For example, the address range "*.22.33.0-55" would match all '
Expand Down

0 comments on commit 134acbf

Please sign in to comment.