Merge pull request #2644 from jrjackso/fix-commands
Fixes issue calling commands that do not require a password, such as help
This commit is contained in:
@@ -101,7 +101,11 @@ class Commands:
|
|||||||
if password is None:
|
if password is None:
|
||||||
return
|
return
|
||||||
f = getattr(self, method)
|
f = getattr(self, method)
|
||||||
result = f(*args, **{'password':password})
|
if cmd.requires_password:
|
||||||
|
result = f(*args, **{'password':password})
|
||||||
|
else:
|
||||||
|
result = f(*args)
|
||||||
|
|
||||||
if self._callback:
|
if self._callback:
|
||||||
apply(self._callback, ())
|
apply(self._callback, ())
|
||||||
return result
|
return result
|
||||||
|
|||||||
Reference in New Issue
Block a user