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

minor fix for macOS binary

This commit is contained in:
Kelly Brazil
2022-01-21 14:08:19 -08:00
parent 6e7b6afe87
commit 8e6a31d3da
6 changed files with 14 additions and 8 deletions

View File

@ -8,7 +8,7 @@ import re
import importlib
from jc import appdirs
__version__ = '1.18.0'
__version__ = '1.18.1'
parsers = [
'acpi',
@ -112,7 +112,10 @@ if os.path.isdir(local_parsers_dir):
local_parsers.append(plugin_name)
if plugin_name not in parsers:
parsers.append(plugin_name)
del name
try:
del name
except Exception:
pass
def _cliname_to_modname(parser_cli_name):