def contributors(self): """The Contributors of the plugin.""" data = self.metadata.get('contributors', '') if not data: return [] return [ split_email(c.strip()) for c in self.metadata.get('contributors', '').split(',') ]
def contributors(self): """The Contributors of the plugin.""" data = self.metadata.get("contributors", "") if not data: return [] return [split_email(c.strip()) for c in self.metadata.get("contributors", "").split(",")]
def author_info(self): """The author, mail and author URL of the plugin.""" return split_email(self.metadata.get("author", u"Nobody")) + (self.metadata.get("author_url"),)
def author_info(self): """The author, mail and author URL of the plugin.""" return split_email(self.metadata.get('author', u'Nobody')) + \ (self.metadata.get('author_url'),)