Extra space zapped\!

This commit is contained in:
Jeremy Fincher 2004-08-08 19:34:15 +00:00
parent b7bd3d414e
commit f19c98a8f1
1 changed files with 7 additions and 7 deletions

View File

@ -500,11 +500,11 @@ class Relay(callbacks.Privmsg):
if channel not in self.registryValue('channels'):
return
network = self._getIrcName(irc)
if not self.registryValue('hostmasks', channel):
hostmask = ' '
if self.registryValue('hostmasks', channel):
hostmask = ' (%s)' % msg.prefix
else:
hostmask = ' (%s) ' % msg.prefix
s = '%s%shas joined on %s' % (msg.nick, hostmask, network)
hostmask = ''
s = '%s%s has joined on %s' % (msg.nick, hostmask, network)
m = ircmsgs.privmsg(channel, s)
self._sendToOthers(irc, m)
@ -514,10 +514,10 @@ class Relay(callbacks.Privmsg):
if channel not in self.registryValue('channels'):
return
network = self._getIrcName(irc)
if not self.registryValue('hostmasks', channel):
hostmask = ' '
else:
if self.registryValue('hostmasks', channel):
hostmask = ' (%s)' % msg.prefix
else:
hostmask = ''
s = '%s%s has left on %s' % (msg.nick, hostmask, network)
m = ircmsgs.privmsg(channel, s)
self._sendToOthers(irc, m)