diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oe/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index bedade292b..b8224de20b 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py | |||
@@ -51,7 +51,7 @@ def both_contain(variable1, variable2, checkvalue, d): | |||
51 | else: | 51 | else: |
52 | checkvalue = set(checkvalue) | 52 | checkvalue = set(checkvalue) |
53 | if checkvalue.issubset(val1) and checkvalue.issubset(val2): | 53 | if checkvalue.issubset(val1) and checkvalue.issubset(val2): |
54 | return checkvalue | 54 | return " ".join(checkvalue) |
55 | else: | 55 | else: |
56 | return "" | 56 | return "" |
57 | 57 | ||