mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-05 18:49:23 +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
|
||||
|
||||
def __str__(self):
|
||||
return '%s (%s) <%s>' % (self.name, self.nick, self.email)
|
||||
if self.name != self.nick:
|
||||
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.
|
||||
jemfinch = Author('Jeremy Fincher', 'jemfinch', 'jemfinch@users.sf.net')
|
||||
|
Loading…
Reference in New Issue
Block a user