Update __main__.py

Fixed typo
This commit is contained in:
Jamie Hardt
2020-05-17 12:49:37 -07:00
parent 44388c6b7d
commit 7816f08912

View File

@@ -31,8 +31,8 @@ def main():
output_opts = OptionGroup(title="Output Options", parser=parser)
output_opts.add_option('--json', default=False, action='store_true', dest='write_json',
help='Output a JSON document instead of XML. If this option is enabled, --xform will have no'
'effect.')
help='Output a JSON document instead of XML. If this option is enabled, --xform will have '
'no effect.')
output_opts.add_option('--xform', dest='xslt', help="Convert with built-is XSLT transform.",
default=None, metavar='NAME')