Fix cowsay
This commit is contained in:
parent
390e098cf2
commit
a959cdd07d
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ while True:
|
||||||
if not sbconfig.cflagexist(channel, "-multiline"):
|
if not sbconfig.cflagexist(channel, "-multiline"):
|
||||||
if len(command) > 1:
|
if len(command) > 1:
|
||||||
try:
|
try:
|
||||||
system(['cowsay'] + command[1:], channel)
|
system(['/usr/games/cowsay'] + command[1:], channel)
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
irc.send_irc(channel, nick + ": " + ex.__class__.__name__)
|
irc.send_irc(channel, nick + ": " + ex.__class__.__name__)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue