diff options
-rwxr-xr-x | mpm/tools/mpm_shell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpm/tools/mpm_shell.py b/mpm/tools/mpm_shell.py index ed2998809..2997a5eb2 100755 --- a/mpm/tools/mpm_shell.py +++ b/mpm/tools/mpm_shell.py @@ -200,7 +200,7 @@ class MPMShell(cmd.Cmd): from mprpc.exceptions import RPCError if requires_token and \ (self._claimer is None or self._claimer.get_token() is None): - print("Cannot execute `{}' -- no claim available!") + print("Cannot execute '{}' -- no claim available!".format(command)) return try: if args or requires_token: |