CMake: pro2cmake.py: Fix typo

Change-Id: I5eebe64f825ab28a67093b1a2cef417ed0908ec0
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Tobias Hunger 2019-03-18 19:12:52 +01:00
parent 74aa6abac6
commit d84a2b8274

View File

@ -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()