From 0d370eb403ab4d9ed11e36776efc08bdd3505c1a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 13 Feb 2020 10:03:11 -0500 Subject: [PATCH] doc update --- jc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index 2fa75791..dbfab530 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -82,7 +82,7 @@ def parser_mod_shortname(parser): def parser_module(parser): - """import the module just in time and present the module object""" + """import the module just in time and return the module object""" importlib.import_module('jc.parsers.' + parser_mod_shortname(parser)) return getattr(jc.parsers, parser_mod_shortname(parser))