mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 03:33:11 +01:00
Fix coding style and remove unneeded command
This commit is contained in:
parent
974dc00d29
commit
b8fa70172a
@ -140,6 +140,7 @@ class Network(callbacks.Plugin):
|
|||||||
"""
|
"""
|
||||||
self.Proxy(otherIrc, msg, commandAndArgs)
|
self.Proxy(otherIrc, msg, commandAndArgs)
|
||||||
command = wrap(command, ['admin', ('networkIrc', True), many('something')])
|
command = wrap(command, ['admin', ('networkIrc', True), many('something')])
|
||||||
|
|
||||||
def cmdall(self, irc, msg, args, commandAndArgs):
|
def cmdall(self, irc, msg, args, commandAndArgs):
|
||||||
"""<command> <args>...
|
"""<command> <args>...
|
||||||
|
|
||||||
@ -147,9 +148,9 @@ class Network(callbacks.Plugin):
|
|||||||
"""
|
"""
|
||||||
ircs = world.ircs
|
ircs = world.ircs
|
||||||
for ircd in ircs:
|
for ircd in ircs:
|
||||||
#ircd.queueMsg(ircmsgs.IrcMsg(prefix="", command=commandAndArgs, args="", msg=""))
|
|
||||||
self.Proxy(ircd, msg, commandAndArgs)
|
self.Proxy(ircd, msg, commandAndArgs)
|
||||||
cmdall = wrap(cmdall, ['admin', many('something')])
|
cmdall = wrap(cmdall, ['admin', many('something')])
|
||||||
|
|
||||||
###
|
###
|
||||||
# whois command-related stuff.
|
# whois command-related stuff.
|
||||||
###
|
###
|
||||||
|
Loading…
Reference in New Issue
Block a user