summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-03-18 19:12:52 +0100
committerTobias Hunger <tobias.hunger@qt.io>2019-03-20 10:44:33 +0000
commitd84a2b82747d83b8b52e106ee516cba7b62386a8 (patch)
treeca94b8da78b2d65facc91a009b760226f38f5fe3 /util
parent74aa6abac6b26f800619dea91fa8396e5efde2b2 (diff)
CMake: pro2cmake.py: Fix typo
Change-Id: I5eebe64f825ab28a67093b1a2cef417ed0908ec0 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'util')
-rwxr-xr-xutil/cmake/pro2cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/pro2cmake.py b/util/cmake/pro2cmake.py
index adcbaa9868..56d5f24b67 100755
--- a/util/cmake/pro2cmake.py
+++ b/util/cmake/pro2cmake.py
@@ -349,7 +349,7 @@ class Scope(object):
return child_count == 1 or self._children[1]._condition == 'else'
def settle_condition(self):
- new_children: typing.List[scope] = []
+ new_children: typing.List[Scope] = []
for c in self._children:
c.settle_condition()