Fix docs build manpage on python3

Change-Id: I4142873e25ff6d311eb8c80a73a47b73861a61b8
This commit is contained in:
Darragh Bailey 2016-11-07 18:25:43 +00:00
parent bbf251148c
commit abb34a9a61
1 changed files with 5 additions and 5 deletions

View File

@ -43,7 +43,7 @@ class BuildManpage(Command):
def finalize_options(self):
from git_upstream import main
self._commands, self._parser = main.build_parsers()
self._parser.formatter = ManPageFormatter()
self._parser.formatter_class = ManPageFormatter
if self.output is None:
self.output = self.distribution.get_name() + '.1'
@ -132,12 +132,12 @@ class BuildManpage(Command):
class ManPageFormatter(argparse.ArgumentDefaultsHelpFormatter):
def __init__(self,
prog,
indent_increment=2,
max_help_position=24,
width=None,
short_first=1):
argparse.HelpFormatter.__init__(self, indent_increment,
max_help_position, width, short_first)
width=None):
argparse.HelpFormatter.__init__(self, prog, indent_increment,
max_help_position, width)
@staticmethod
def _markup(txt):