diff options
| author | Frederik Gladhorn <[email protected]> | 2019-10-10 15:10:37 +0200 |
|---|---|---|
| committer | Alexandru Croitor <[email protected]> | 2019-10-10 14:26:49 +0000 |
| commit | 174b17d65d2a181502c81cdd490f25da40d1c22d (patch) | |
| tree | f8a2a1c83eeb34818502c86b3fc7822342cb40df /util/cmake/qmake_parser.py | |
| parent | 6167031ecc3c5bac924ca8deb469cf3dc6886704 (diff) | |
cmake scripts: flake8 cleanup
At least setting the example install dir looks like a bug.
Change-Id: Ibcced739d05de5445fa455e509cc6f42b9ed935b
Reviewed-by: Alexandru Croitor <[email protected]>
Diffstat (limited to 'util/cmake/qmake_parser.py')
| -rw-r--r-- | util/cmake/qmake_parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cmake/qmake_parser.py b/util/cmake/qmake_parser.py index 7aba0784e21..e75e8849592 100644 --- a/util/cmake/qmake_parser.py +++ b/util/cmake/qmake_parser.py @@ -219,7 +219,7 @@ class QmakeParser: def parse_requires_condition(s, l, t): # The following expression unwraps the condition via the additional info # set by originalTextFor. - condition_without_parentheses = s[t._original_start + 1 : t._original_end - 1] + condition_without_parentheses = s[t._original_start + 1: t._original_end - 1] # And this replaces the colons with '&&' similar how it's done for 'Condition'. condition_without_parentheses = ( |
