Browse Source

Fix for python3

oz123 10 năm trước cách đây
mục cha
commit
187b66dad3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      build_manpage.py

+ 1 - 1
build_manpage.py

@@ -205,7 +205,7 @@ class ManPageFormatter(argparse.HelpFormatter):
             return ''
 
         footer = []
-        for section, value in sections.iteritems():
+        for section, value in sections.items():
             part = ".SH {}\n {}".format(section.upper(), value)
             footer.append(part)