summaryrefslogtreecommitdiffstats
path: root/tools/scripts/gn_find_mocables.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scripts/gn_find_mocables.py')
-rw-r--r--tools/scripts/gn_find_mocables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/scripts/gn_find_mocables.py b/tools/scripts/gn_find_mocables.py
index d1f682456..4dc2576e3 100644
--- a/tools/scripts/gn_find_mocables.py
+++ b/tools/scripts/gn_find_mocables.py
@@ -58,10 +58,10 @@ for f in filter(os.path.isfile, files):
includedMocs.add(im.group(1))
for mocable in includedMocs:
- print "Found included moc: " + mocable
+ print("Found included moc: " + mocable)
assert len(includedMocs) == 0 , "Included mocs are not supported !"
for mocable in mocables:
- print mocable
+ print(mocable)
sys.exit(0)