aboutsummaryrefslogtreecommitdiff
path: root/interpreter.py
diff options
context:
space:
mode:
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")