doc/hgmanpage.py
changeset 45942 89a2afe31e82
parent 43076 2372284d9457
child 47062 f38bf44e077f
equal deleted inserted replaced
45941:346af7687c6f 45942:89a2afe31e82
   820 
   820 
   821     def visit_list_item(self, node):
   821     def visit_list_item(self, node):
   822         # man 7 man argues to use ".IP" instead of ".TP"
   822         # man 7 man argues to use ".IP" instead of ".TP"
   823         self.body.append(
   823         self.body.append(
   824             '.IP %s %d\n'
   824             '.IP %s %d\n'
   825             % (next(self._list_char[-1]), self._list_char[-1].get_width(),)
   825             % (
       
   826                 next(self._list_char[-1]),
       
   827                 self._list_char[-1].get_width(),
       
   828             )
   826         )
   829         )
   827 
   830 
   828     def depart_list_item(self, node):
   831     def depart_list_item(self, node):
   829         pass
   832         pass
   830 
   833