소스 검색

Fix for python3

oz123 10 년 전
부모
커밋
187b66dad3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)