We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18b8311 commit f692c57Copy full SHA for f692c57
Lib/argparse.py
@@ -681,7 +681,7 @@ def _indents(self, line):
681
"""Return line indent level and "sub_indent" for bullet list text."""
682
683
indent = len(_re.match(r"( *)", line).group(1))
684
- list_match = _re.match(r"( *)(([*-+>]+|\w+\)|\w+\.) +)", line)
+ list_match = _re.match(r"( *)(([*\-+>]+|\w+\)|\w+\.) +)", line)
685
if list_match:
686
sub_indent = indent + len(list_match.group(2))
687
else:
0 commit comments