Skip to content

Commit eea0434

Browse files
committed
[__main__] fix help message for prefile / postfile
added information about support for URL in addition to local file paths
1 parent 6cd64f4 commit eea0434

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/fdiff/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ def run(argv):
6262
parser.add_argument(
6363
"--nomp", action="store_true", help="Do not use multi process optimizations"
6464
)
65-
parser.add_argument("PREFILE", help="Font file path 1")
66-
parser.add_argument("POSTFILE", help="Font file path 2")
65+
parser.add_argument("PREFILE", help="Font file path/URL 1")
66+
parser.add_argument("POSTFILE", help="Font file path/URL 2")
6767

6868
args = parser.parse_args(argv)
6969

0 commit comments

Comments
 (0)