mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-09 01:05:53 +02:00
make parser_shortname more robust
This commit is contained in:
@ -194,7 +194,8 @@ class JcCli():
|
|||||||
@staticmethod
|
@staticmethod
|
||||||
def parser_shortname(parser_arg: str) -> str:
|
def parser_shortname(parser_arg: str) -> str:
|
||||||
"""Return short name of the parser with dashes and no -- prefix"""
|
"""Return short name of the parser with dashes and no -- prefix"""
|
||||||
return parser_arg.lstrip('-')
|
p = parser_arg.lstrip('-')
|
||||||
|
return p.replace('_', '-')
|
||||||
|
|
||||||
def parsers_text(self) -> str:
|
def parsers_text(self) -> str:
|
||||||
"""Return the argument and description information from each parser"""
|
"""Return the argument and description information from each parser"""
|
||||||
|
Reference in New Issue
Block a user