summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--layman/overlays/overlay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index 8a928db..ce19f5e 100644
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -130,7 +130,7 @@ class Overlay(object):
_location = ensure_unicode(source_elem.text.strip())
return _class(self, xml, config, _location, ignore, quiet)
- self.sources = map(create_overlay_source, _sources)
+ self.sources = [create_overlay_source(e) for e in _sources]
_owner = xml.find('owner')