diff options
-rwxr-xr-x | cmd2/cmd2.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 360743ed..5419a6fa 100755 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2694,9 +2694,8 @@ Usage: Usage: unalias [-a] name [name ...] read_only_settings = """ Commands may be terminated with: {} Arguments at invocation allowed: {} - Output redirection and pipes allowed: {} - """.format(str(self.terminators), self.allow_cli_args, self.allow_redirection) - return read_only_settings + Output redirection and pipes allowed: {}""" + return read_only_settings.format(str(self.terminators), self.allow_cli_args, self.allow_redirection) def show(self, args, parameter): param = '' |