missing space in the status plugin
This commit is contained in:
parent
c33ee919ff
commit
f0fb3d5d7a
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ class Plugin(BasePlugin):
|
|||
def init(self):
|
||||
for st in ('dnd', 'busy', 'afk', 'chat', 'xa', 'away', 'available'):
|
||||
self.api.add_command(st,
|
||||
lambda line,st=st: self.api.run_command('/status' + st + ' "'+line+'"'),
|
||||
lambda line,st=st: self.api.run_command('/status ' + st + ' "'+line+'"'),
|
||||
usage='[status message]',
|
||||
short='Set your status as %s' % st,
|
||||
help='Set your status as %s' % st)
|
||||
|
|
Loading…
Reference in a new issue