diff options
author | mathieui <mathieui@mathieui.net> | 2015-07-20 20:24:23 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-07-20 20:24:23 +0200 |
commit | fb8816de06fa90c31704bb645d783d74ce53cdb4 (patch) | |
tree | d6c87617b0d1ae4a1372e6540b4856e8e8c08c37 | |
parent | f9bb45f6e56d0c5ebd5d602677e9109f29ecf6b9 (diff) | |
download | poezio-fb8816de06fa90c31704bb645d783d74ce53cdb4.tar.gz poezio-fb8816de06fa90c31704bb645d783d74ce53cdb4.tar.bz2 poezio-fb8816de06fa90c31704bb645d783d74ce53cdb4.tar.xz poezio-fb8816de06fa90c31704bb645d783d74ce53cdb4.zip |
Improve /reorder help
-rw-r--r-- | plugins/reorder.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/reorder.py b/plugins/reorder.py index 13d873e7..f1799c12 100644 --- a/plugins/reorder.py +++ b/plugins/reorder.py @@ -85,7 +85,8 @@ def parse_config(config): class Plugin(BasePlugin): def init(self): self.api.add_command('reorder', self.command_reorder, - help='Reorder all tabs.') + help='Reorder all tabs using the pre-defined' + ' layout from the configuration file.') @command_args_parser.ignored def command_reorder(self): |