summaryrefslogtreecommitdiffstats
path: root/test/QT/QTFLAGS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/QT/QTFLAGS.py')
-rw-r--r--test/QT/QTFLAGS.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/QT/QTFLAGS.py b/test/QT/QTFLAGS.py
index 008397a..b7172fc 100644
--- a/test/QT/QTFLAGS.py
+++ b/test/QT/QTFLAGS.py
@@ -147,7 +147,7 @@ test.must_exist(['work1', 'mmmmocFromH.cxx'],
['work1', 'mmmanother_ui_file.cxx'])
def _flagTest(test,fileToContentsStart):
- for f,c in fileToContentsStart.items():
+ for f,c in list(fileToContentsStart.items()):
if test.read(test.workpath('work1', f)).find(c) != 0:
return 1
return 0