diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-03-05 00:03:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-05 00:03:34 +0200 |
commit | 0744601fda65c2cd3e02c6705533493ed7b4e501 (patch) | |
tree | 5dcbc8401a2ef94c723fce46c0d2e1899ed42adf /mesonbuild/interpreterbase.py | |
parent | 80b101d5f376835e3f31604797e98a5a9f3b2fd3 (diff) | |
parent | 390333a18dfa1d8ec8fefe25f638902700ddb82e (diff) | |
download | meson-0744601fda65c2cd3e02c6705533493ed7b4e501.zip meson-0744601fda65c2cd3e02c6705533493ed7b4e501.tar.gz meson-0744601fda65c2cd3e02c6705533493ed7b4e501.tar.bz2 |
Merge pull request #3171 from jon-turney/flake8
Fix flake8 issues
Diffstat (limited to 'mesonbuild/interpreterbase.py')
-rw-r--r-- | mesonbuild/interpreterbase.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreterbase.py b/mesonbuild/interpreterbase.py index 0539b14..170df29 100644 --- a/mesonbuild/interpreterbase.py +++ b/mesonbuild/interpreterbase.py @@ -408,7 +408,7 @@ The result of this is undefined and will become a hard error in a future Meson r varname = node.var_name addition = self.evaluate_statement(node.value) if is_disabler(addition): - set_variable(varname, addition) + self.set_variable(varname, addition) return # Remember that all variables are immutable. We must always create a # full new variable and then assign it. |