소스 검색

Minor txtmerge.py fix

Fixes the print statement to use parenthesis as the newer version of
python requires.
BetMonty 9 년 전
부모
커밋
6d9f4d80bc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      txtmerge.py

+ 1 - 1
txtmerge.py

@@ -36,7 +36,7 @@ for location in root.iter('Location'):
         ofile.write(text)
         ifile.close()
     except IOError:
-        print "WARNING: missing location %s" % iname
+        print("WARNING: missing location %s" % iname)
         pass
 
 ofile.close()