diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-26 14:41:19 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-26 14:41:19 +0200 |
commit | 0d5d36465cb24d725a8f8ef081a978a380837efc (patch) | |
tree | dc7f0645d4cb504a653172b02bdf687542f7904d | |
parent | 4172a79117606ffaf23feba6dc38ced3fa759ea5 (diff) | |
download | poezio-0d5d36465cb24d725a8f8ef081a978a380837efc.tar.gz poezio-0d5d36465cb24d725a8f8ef081a978a380837efc.tar.bz2 poezio-0d5d36465cb24d725a8f8ef081a978a380837efc.tar.xz poezio-0d5d36465cb24d725a8f8ef081a978a380837efc.zip |
Document /recolor random with /help too
-rw-r--r-- | src/tabs/muctab.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index c2f7925a..157b28d9 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -138,7 +138,12 @@ class MucTab(ChatTab): shortdesc=_('Change your nickname.'), completion=self.completion_nick) self.register_command('recolor', self.command_recolor, - desc=_('Re-assign a color to all participants of the current room, based on the last time they talked. Use this if the participants currently talking have too many identical colors.'), + usage=_('[random]'), + desc=_('Re-assign a color to all participants of the' + ' current room, based on the last time they talked.' + ' Use this if the participants currently talking ' + 'have too many identical colors. Use /recolor random' + ' for a non-deterministic result.'), shortdesc=_('Change the nicks colors.'), completion=self.completion_recolor) self.register_command('cycle', self.command_cycle, |