Renovate the module system and implement adding and resuming pool instances using the new relay/alias/network system
This commit is contained in:
@@ -22,9 +22,8 @@ def parseCommand(addr, authed, data):
|
||||
else:
|
||||
failure("No text was sent")
|
||||
return
|
||||
for i in main.CommandMap.keys():
|
||||
if spl[0] == i:
|
||||
main.CommandMap[i](addr, authed, data, obj, spl, success, failure, info, incUsage, length)
|
||||
return
|
||||
if spl[0] in main.CommandMap.keys():
|
||||
main.CommandMap[spl[0]](addr, authed, data, obj, spl, success, failure, info, incUsage, length)
|
||||
return
|
||||
incUsage(None)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user