diff options
author | mathieui <mathieui@mathieui.net> | 2016-10-04 00:26:54 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-10-04 00:29:19 +0200 |
commit | 5a6ba4dda826308fd3ba5abd8cc25fba2166a431 (patch) | |
tree | 8ef6c6f010ff1feed1a4fb56e17fe955a7ff9ae7 /plugins/close_all.py | |
parent | c5e80b968862b4fe54d394ed278466f3eb02dd41 (diff) | |
download | poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.gz poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.bz2 poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.tar.xz poezio-5a6ba4dda826308fd3ba5abd8cc25fba2166a431.zip |
Replace "MUC" by "chatroom" in the documentation
And fix some linewrapping, obsolete references to poezio.eu, and
obsolete docs.
Diffstat (limited to 'plugins/close_all.py')
-rw-r--r-- | plugins/close_all.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/close_all.py b/plugins/close_all.py index 6d31c05f..70dcd21c 100644 --- a/plugins/close_all.py +++ b/plugins/close_all.py @@ -1,5 +1,5 @@ """ -``close_all`` plugin: close all tabs except MUCs and the roster. +``close_all`` plugin: close all tabs except chatrooms and the roster. Commands -------- @@ -9,7 +9,7 @@ Commands /closeall **Usage:** ``/closeall`` - Close all tabs except the roster and MUC tabs. + Close all tabs except the roster and chatroom tabs. """ from poezio.plugin import BasePlugin from poezio import tabs @@ -19,7 +19,7 @@ from poezio.decorators import command_args_parser class Plugin(BasePlugin): def init(self): self.api.add_command('closeall', self.command_closeall, - help='Close all non-muc tabs.') + help='Close all non-chatroom tabs.') @command_args_parser.ignored def command_closeall(self): |