Fix another typo

This commit is contained in:
Mark Veidemanis 2018-04-21 14:44:07 +01:00
parent 7de25e44f4
commit 66d4501303
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ class Enable:
def enable(self, addr, authed, data, obj, spl, success, failure, info, incUsage, length):
if authed:
if length == 2:
if not spl[1] in pool.keys():
if not spl[1] in main.pool.keys():
failure("Name does not exist: %s" % spl[1])
return
main.pool[spl[1]]["enabled"] = True