From 610d49f5bc6639760503acf086dae8137018e266 Mon Sep 17 00:00:00 2001 From: Guillaume Chazarain Date: Tue, 27 May 2008 14:49:36 +0200 Subject: [PATCH] Consistency --- gsh.1 | 2 +- gsh/control_commands.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gsh.1 b/gsh.1 index 52c7966..1e22ea0 100644 --- a/gsh.1 +++ b/gsh.1 @@ -86,7 +86,7 @@ Try to reconnect to disconnected remote shells. The special characters * ? and [ \fB:rename [NEW_NAME]\fR Rename all enabled remote shells with the argument. The argument will be shell expanded on the remote processes. With no argument, the original hostname will be restored as the displayed name. .TP -\fB:replicate SHELL:path\fR +\fB:replicate SHELL:PATH\fR Copy a path from one remote shell to all others .TP \fB:reset_prompt [SHELLS...]\fR diff --git a/gsh/control_commands.py b/gsh/control_commands.py index 2385505..375c7f1 100644 --- a/gsh/control_commands.py +++ b/gsh/control_commands.py @@ -289,11 +289,11 @@ def complete_replicate(line, text): def do_replicate(command): """ - Usage: :replicate SHELL:path + Usage: :replicate SHELL:PATH Copy a path from one remote shell to all others """ if ':' not in command: - console_output('Usage: :replicate SHELL:path\n') + console_output('Usage: :replicate SHELL:PATH\n') return shell_name, path = command.split(':', 1) for shell in dispatchers.all_instances(): -- 2.11.4.GIT