aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-04-26 01:56:02 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2015-04-26 01:56:02 +0300
commit5bebe6ce147c54118fc198ee941704f04cfe13b3 (patch)
tree60f33b42ff65f7b08262eb9e74a8a9db18367f41 /interpreter.py
parent8cecf20404143eebf752379d97f7488afe2fd2a6 (diff)
downloadmeson-5bebe6ce147c54118fc198ee941704f04cfe13b3.zip
meson-5bebe6ce147c54118fc198ee941704f04cfe13b3.tar.gz
meson-5bebe6ce147c54118fc198ee941704f04cfe13b3.tar.bz2
A few more eradications of plain strings.
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 09d4467..6de2d54 100644
--- a/interpreter.py
+++ b/interpreter.py
@@ -1490,7 +1490,7 @@ class Interpreter():
if isinstance(s, File) or isinstance(s, GeneratedListHolder) or \
isinstance(s, CustomTargetHolder):
pass
- elif isinstance(s, str): # FIXME do not allow plain strings.
+ elif isinstance(s, str):
s = File.from_source_file(self.environment.source_dir, self.subdir, s)
else:
raise RuntimeError("Unreachable code")