aboutsummaryrefslogtreecommitdiff
path: root/layman
diff options
context:
space:
mode:
Diffstat (limited to 'layman')
-rwxr-xr-xlayman/overlays/overlay.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/layman/overlays/overlay.py b/layman/overlays/overlay.py
index 31fe400..defa4e3 100755
--- a/layman/overlays/overlay.py
+++ b/layman/overlays/overlay.py
@@ -661,9 +661,7 @@ class Overlay(object):
if self.license != None:
repo['@license'] = self.license
repo['name'] = self.name
- repo['description'] = []
- for i in self.descriptions:
- repo['description'].append(i)
+ repo['description'] = [i for i in self.descriptions]
if self.homepage != None:
repo['homepage'] = self.homepage
if self.irc != None: