aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 3c11449..16af356 100644
--- a/build.py
+++ b/build.py
@@ -205,7 +205,7 @@ class BuildTarget():
# Holder unpacking. Ugly.
if hasattr(s, 'held_object'):
s = s.held_object
- if isinstance(s, str) or isinstance(s, File): # FIXME, accept only File objects
+ if isinstance(s, File):
if not s in added_sources:
self.sources.append(s)
added_sources[s] = True