summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-03-26 22:17:18 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-03-26 22:17:18 +0100
commit3ec12c0b43f885f85427743c03fe099ffed56fc0 (patch)
tree0cb3f75b99836b479d99a8ccc8fd8dcc369b8dea /tools
parent1d5c00fde1d2263dd74f2bdc8590783057ec853e (diff)
parent8947dc6902bfd2a8acd31b8c894407bf6a12695b (diff)
Merge branch '5.14' into 5.15
Conflicts: src/3rdparty tests/auto/widgets/qwebenginepage/tst_qwebenginepage.cpp Change-Id: Idbc9d3b06c0052a721c974fbcbfa3164faaead14
Diffstat (limited to 'tools')
-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)