diff options
Diffstat (limited to 'Lib/argparse.py')
| -rw-r--r-- | Lib/argparse.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/Lib/argparse.py b/Lib/argparse.py index f25b1b6610..202f2cb972 100644 --- a/Lib/argparse.py +++ b/Lib/argparse.py @@ -606,8 +606,7 @@ class HelpFormatter(object):              pass          else:              self._indent() -            for subaction in get_subactions(): -                yield subaction +            yield from get_subactions()              self._dedent()      def _split_lines(self, text, width): | 
