summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2019-09-05 18:05:59 +0200
committerJulian Berman <Julian@GrayVines.com>2019-09-05 18:05:59 +0200
commitbbf080b20df23234e8cf3e23d2c7a241bc31a434 (patch)
tree1937e90f34fd1fe6c36d65f20ccef8051e7a4536
parentf796b23b25be7600efe7225961d0307642bd83d7 (diff)
downloadjsonschema-bbf080b20df23234e8cf3e23d2c7a241bc31a434.tar.gz
Minor fixes for CLI help.
-rw-r--r--jsonschema/cli.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonschema/cli.py b/jsonschema/cli.py
index 45acb74..78779a8 100644
--- a/jsonschema/cli.py
+++ b/jsonschema/cli.py
@@ -31,7 +31,7 @@ parser.add_argument(
dest="instances",
type=_json_file,
help=(
- "a path to a JSON instance (i.e. filename.json)"
+ "a path to a JSON instance (i.e. filename.json) "
"to validate (may be specified multiple times)"
),
)
@@ -60,7 +60,7 @@ parser.add_argument(
)
parser.add_argument(
"schema",
- help="the JSON Schema to validate with (i.e. filename.schema)",
+ help="the JSON Schema to validate with (i.e. schema.json)",
type=_json_file,
)