Fix error with package tags type

Package tags are mutable, so it's type should be a list everywhere

Change-Id: I30149f052604a88f647de82526959867c5aaee65
Closes-Bug: #1431275
This commit is contained in:
Ekaterina Chernova 2015-03-13 11:43:40 +03:00
parent a7a8d5aa8e
commit 4992cda206

View File

@ -71,7 +71,7 @@ class ApplicationPackage(object):
@property
def tags(self):
return tuple(self._tags)
return list(self._tags)
@property
def logo(self):