aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
authorjpakkane <jpakkane@gmail.com>2015-06-19 13:10:07 +0300
committerjpakkane <jpakkane@gmail.com>2015-06-19 13:10:07 +0300
commitf15eb466fb5ab0713b1614bdc973d242bdb4b4ad (patch)
tree906822ecdb2b7b441f8e5268329046b0ee3e1def /interpreter.py
parent74b0fad8f11455f79c142baf95fa0ebb8ce86c62 (diff)
parentbc865ab9436a7274a08f08cfa98d91340cfe419a (diff)
downloadmeson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.zip
meson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.tar.gz
meson-f15eb466fb5ab0713b1614bdc973d242bdb4b4ad.tar.bz2
Merge pull request #162 from mesonbuild/lint_errors
Fix some bugs when linting code
Diffstat (limited to 'interpreter.py')
-rw-r--r--interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py
index 84db87e..863b23b 100644
--- a/interpreter.py
+++ b/interpreter.py
@@ -1681,7 +1681,7 @@ class Interpreter():
isinstance(value, str) or\
isinstance(value, int) or \
isinstance(value, list) or \
- isinstance(value, File):
+ isinstance(value, mesonlib.File):
return True
return False