We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f1cea commit 4b6f378Copy full SHA for 4b6f378
unicodetools/data/desuffixucd.py
@@ -23,7 +23,7 @@
23
24
def main():
25
if len(sys.argv) < 2:
26
- print ("Usage: %s path/to/UCD/root" % sys.argv[0])
+ print("Usage: %s path/to/UCD/root" % sys.argv[0])
27
return
28
ucd_root = sys.argv[1]
29
source_files = []
@@ -36,7 +36,7 @@ def main():
36
if match:
37
new_basename = match.group(1) + match.group(2)
38
if new_basename != basename:
39
- print "Removing version suffix from " + source_file
+ print("Removing version suffix from " + source_file)
40
# ... so that we can easily compare UCD files.
41
new_source_file = os.path.join(folder, new_basename)
42
shutil.move(source_file, new_source_file)
0 commit comments