1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00

doc update

This commit is contained in:
Kelly Brazil
2020-02-13 10:03:11 -05:00
parent 7492c3f1e3
commit 0d370eb403

View File

@ -82,7 +82,7 @@ def parser_mod_shortname(parser):
def parser_module(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)) importlib.import_module('jc.parsers.' + parser_mod_shortname(parser))
return getattr(jc.parsers, parser_mod_shortname(parser)) return getattr(jc.parsers, parser_mod_shortname(parser))