From 476eaecd17cde6fa998ccd2e5675e239ad880404 Mon Sep 17 00:00:00 2001 From: dgelessus Date: Wed, 4 Dec 2019 21:16:29 +0100 Subject: [PATCH] Fix typo in the help text for rsrcfork read --- rsrcfork/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rsrcfork/__main__.py b/rsrcfork/__main__.py index b0d1385..181ee2a 100644 --- a/rsrcfork/__main__.py +++ b/rsrcfork/__main__.py @@ -668,7 +668,7 @@ def do_read(prog: str, args: typing.List[str]) -> typing.NoReturn: ap.add_argument("--format", choices=["dump", "dump-text", "hex", "raw", "derez"], default="dump", help="How to output the resources: human-readable info with hex dump (dump), human-readable info with newline-translated data (dump-text), data only as hex (hex), data only as raw bytes (raw), or like DeRez with no resource definitions (derez). Default: %(default)s") ap.add_argument("--no-sort", action="store_false", dest="sort", help="Output resources in the order in which they are stored in the file, instead of sorting them by type and ID.") add_resource_file_args(ap) - ap.add_argument("filter", nargs="*", help="One or more filters to select which resources to read. If no filters ae specified, all resources are read.") + ap.add_argument("filter", nargs="*", help="One or more filters to select which resources to read. If no filters are specified, all resources are read.") ns = ap.parse_args(args)