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:
ThomasV 2017-07-29 06:33:49 +02:00 committed by GitHub
commit cefb1c9bc0
1 changed files with 5 additions and 1 deletions

View File

@ -101,7 +101,11 @@ class Commands:
if password is None:
return
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:
apply(self._callback, ())
return result