mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Don't repeat nick in supybot.Author if nick and name are the same
This is the case e.g. for quantumlemur's plugins.
This commit is contained in:
parent
7ac2828ab2
commit
e7f033539b
@ -47,7 +47,10 @@ class Author(object):
|
|||||||
self.email = email
|
self.email = email
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
if self.name != self.nick:
|
||||||
return '%s (%s) <%s>' % (self.name, self.nick, self.email)
|
return '%s (%s) <%s>' % (self.name, self.nick, self.email)
|
||||||
|
else:
|
||||||
|
return '%s <%s>' % (self.name, self.email)
|
||||||
|
|
||||||
class authors(object): # This is basically a bag.
|
class authors(object): # This is basically a bag.
|
||||||
jemfinch = Author('Jeremy Fincher', 'jemfinch', 'jemfinch@users.sf.net')
|
jemfinch = Author('Jeremy Fincher', 'jemfinch', 'jemfinch@users.sf.net')
|
||||||
|
Loading…
Reference in New Issue
Block a user