aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbidavis <billy.davis@ni.com>2020-01-06 15:37:01 -0600
committerBrent Stapleton <brent.stapleton@ettus.com>2020-01-06 14:33:33 -0800
commit9ca8504f8e3d3f050093c96f824ffb000d9897f7 (patch)
treedca85d1a74c577dc29085b60d6433a689522c4ab
parentrfnoc: adding RFNoC Python API (diff)
downloaduhd-9ca8504f8e3d3f050093c96f824ffb000d9897f7.tar.xz
uhd-9ca8504f8e3d3f050093c96f824ffb000d9897f7.zip
mpm: include the failed mpm_shell command
This commit changes an mpm_shell error message to include the command that failed when the mpm_shell does not have the claim token.
-rwxr-xr-xmpm/tools/mpm_shell.py2
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: