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 87393ee commit 7d0bee0Copy full SHA for 7d0bee0
Lib/argparse.py
@@ -703,7 +703,7 @@ def _indents(self, line):
703
"""Return line indent level and "sub_indent" for bullet list text."""
704
705
indent = len(_re.match(r"( *)", line).group(1))
706
- list_match = _re.match(r"( *)(([*-+>]+|\w+\)|\w+\.) +)", line)
+ list_match = _re.match(r"( *)(([*\-+>]+|\w+\)|\w+\.) +)", line)
707
if list_match:
708
sub_indent = indent + len(list_match.group(2))
709
else:
0 commit comments