summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohnthagen <johnthagen@users.noreply.github.com>2021-06-01 13:54:33 -0400
committerWaylan Limberg <waylan.limberg@icloud.com>2021-06-01 14:31:33 -0400
commit605c2091603e8cb80580684581796a27fbe35d9c (patch)
treea14c27ac25755019eff43489576bd81a21fbce62
parent3ea29f9d9b7d201269444dccedc0383065532b7e (diff)
downloadpython-markdown-605c2091603e8cb80580684581796a27fbe35d9c.tar.gz
Fix missing space in CLI option help
-rw-r--r--markdown/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/__main__.py b/markdown/__main__.py
index 7d78b7e..0184008 100644
--- a/markdown/__main__.py
+++ b/markdown/__main__.py
@@ -70,7 +70,7 @@ def parse_options(args=None, values=None):
parser.add_option("-c", "--extension_configs",
dest="configfile", default=None,
help="Read extension configurations from CONFIG_FILE. "
- "CONFIG_FILE must be of JSON or YAML format. YAML"
+ "CONFIG_FILE must be of JSON or YAML format. YAML "
"format requires that a python YAML library be "
"installed. The parsed JSON or YAML must result in a "
"python dictionary which would be accepted by the "