From da1d087452da02631296b1b3dc9ee10d4b7f764b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 14 Dec 2019 23:21:47 -0800 Subject: [PATCH] add parser version info --- jc/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jc/cli.py b/jc/cli.py index febfade3..2a015b77 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -97,6 +97,7 @@ def about_jc(): if hasattr(parser_map[parser], 'info'): parser_entry = { 'name': parser_map[parser].__name__.split('.')[-1], + 'version': parser_map[parser].info.version, 'description': parser_map[parser].info.description, 'author': parser_map[parser].info.author, 'author_email': parser_map[parser].info.author_email,