673
def maintainer(self):
674
"""The maintainer of this charm.
674
def maintainers(self):
675
"""The maintainers of this charm.
676
The maintainer is a string or a list of strings in the RFC2822 format.
677
This property is a sorted list comprised of the union of
678
'maintainer' and 'maintainers' fields, de-duplicated.
678
return self._representation['maintainer']
680
# The 'maintainer' field is deprecated but not yet phased out.
682
for key in ('maintainer', 'maintainers'):
683
val = self._representation[key]
685
if isinstance(val, basestring):
688
maintainers.update(val)
689
return sorted(maintainers)
681
692
def subordinate(self):