1
0
Преглед на файлове

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()