mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
Bold, for Strike. And also a bugfix, so it's not an entirely useless commit :)
This commit is contained in:
parent
7f77e68384
commit
2484ce94be
@ -42,6 +42,7 @@ import dictclient
|
||||
import conf
|
||||
import debug
|
||||
import utils
|
||||
import ircutils
|
||||
import privmsgs
|
||||
import callbacks
|
||||
|
||||
@ -125,7 +126,7 @@ class Dict(callbacks.Privmsg):
|
||||
irc.reply(msg, 'No definition for %r could be found.' % word)
|
||||
else:
|
||||
irc.reply(msg, 'No definition for %r could be found in %s' % \
|
||||
(word, dictionary))
|
||||
(word, ircutils.bold(dictionary)))
|
||||
return
|
||||
L = []
|
||||
for d in definitions:
|
||||
@ -144,7 +145,7 @@ class Dict(callbacks.Privmsg):
|
||||
(utils.commaAndify(dbs), len(L), '; '.join(L))
|
||||
irc.reply(msg, s)
|
||||
else:
|
||||
irc.reply('; '.join(L))
|
||||
irc.reply(msg, '; '.join(L))
|
||||
|
||||
|
||||
Class = Dict
|
||||
|
Loading…
Reference in New Issue
Block a user