diff options
-rw-r--r-- | bitbake/lib/bb/data_smart.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index d862308355..9a42a17062 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/lib/bb/data_smart.py | |||
@@ -618,7 +618,7 @@ class DataSmart(MutableMapping): | |||
618 | if value and flag == "_content" and local_var is not None and "_removeactive" in local_var: | 618 | if value and flag == "_content" and local_var is not None and "_removeactive" in local_var: |
619 | removes = [self.expand(r) for r in local_var["_removeactive"]] | 619 | removes = [self.expand(r) for r in local_var["_removeactive"]] |
620 | filtered = filter(lambda v: v not in removes, | 620 | filtered = filter(lambda v: v not in removes, |
621 | value.split(" ")) | 621 | value.split()) |
622 | value = " ".join(filtered) | 622 | value = " ".join(filtered) |
623 | if expand: | 623 | if expand: |
624 | # We need to ensure the expand cache has the correct value | 624 | # We need to ensure the expand cache has the correct value |