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:
parent
a7a8d5aa8e
commit
4992cda206
@ -71,7 +71,7 @@ class ApplicationPackage(object):
|
||||
|
||||
@property
|
||||
def tags(self):
|
||||
return tuple(self._tags)
|
||||
return list(self._tags)
|
||||
|
||||
@property
|
||||
def logo(self):
|
||||
|
Loading…
Reference in New Issue
Block a user