PY3: make sure print stmt is enclosed by '(' & ')'
Signed-off-by: Noel Power <noel.power@suse.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> (cherry picked from Samba merge request https://gitlab.com/samba-team/samba/merge_requests/68)
This commit is contained in:

committed by
Nico Williams

parent
fa3c0031a8
commit
5542a0ba16
@@ -42,7 +42,7 @@ import generate
|
||||
import rfc3454
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print "usage: %s rfc3454.txt outdir" % sys.argv[0]
|
||||
print("usage: %s rfc3454.txt outdir" % sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
tables = rfc3454.read(sys.argv[1])
|
||||
|
@@ -42,7 +42,7 @@ import generate
|
||||
import UnicodeData
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print "usage: %s UnicodeData.txt out-dir" % sys.argv[0]
|
||||
print("usage: %s UnicodeData.txt out-dir" % sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
ud = UnicodeData.read(sys.argv[1])
|
||||
|
@@ -44,7 +44,7 @@ import rfc4518
|
||||
import stringprep
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print "usage: %s rfc3454.txt out-dir" % sys.argv[0]
|
||||
print("usage: %s rfc3454.txt out-dir" % sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
tables = rfc3454.read(sys.argv[1])
|
||||
@@ -104,7 +104,7 @@ for x in trans:
|
||||
(start, length, description, tables) = x
|
||||
symbols = stringprep.symbols(error_list, tables)
|
||||
if len(symbols) == 0:
|
||||
print "no symbol for %s" % description
|
||||
print("no symbol for %s" % description)
|
||||
sys.exit(1)
|
||||
errorlist_c.file.write(" {0x%x, 0x%x, %s}, /* %s: %s */\n"
|
||||
% (start, length, symbols, ",".join(tables), description))
|
||||
|
@@ -45,7 +45,7 @@ import stringprep
|
||||
import util
|
||||
|
||||
if len(sys.argv) != 3:
|
||||
print "usage: %s rfc3454.txt out-dir" % sys.argv[0]
|
||||
print("usage: %s rfc3454.txt out-dir" % sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
tables = rfc3454.read(sys.argv[1])
|
||||
@@ -114,7 +114,7 @@ trans = stringprep.sort_merge_trans(trans)
|
||||
|
||||
for x in trans:
|
||||
if x[0] == 0xad:
|
||||
print "fooresult %s" % ",".join(x[3])
|
||||
print("fooresult %s" % ",".join(x[3]))
|
||||
|
||||
for x in trans:
|
||||
(key, value, description, table) = x
|
||||
@@ -130,7 +130,7 @@ for x in trans:
|
||||
(key, value, description, tables) = x
|
||||
symbols = stringprep.symbols(map_list, tables)
|
||||
if len(symbols) == 0:
|
||||
print "no symbol for %s %s (%s)" % (key, description, tables)
|
||||
print("no symbol for %s %s (%s)" % (key, description, tables))
|
||||
sys.exit(1)
|
||||
v = value.split()
|
||||
map_c.file.write(" {0x%x, %u, %u, %s}, /* %s: %s */\n"
|
||||
|
@@ -43,8 +43,8 @@ import UnicodeData
|
||||
import util
|
||||
|
||||
if len(sys.argv) != 4:
|
||||
print "usage: %s UnicodeData.txt"
|
||||
" CompositionExclusions-3.2.0.txt out-dir" % sys.argv[0]
|
||||
print("usage: %s UnicodeData.txt"
|
||||
" CompositionExclusions-3.2.0.txt out-dir" % sys.argv[0])
|
||||
sys.exit(1)
|
||||
|
||||
ud = UnicodeData.read(sys.argv[1])
|
||||
|
Reference in New Issue
Block a user