summaryrefslogtreecommitdiff
path: root/qpid/python/commands/qpid-tool
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2008-07-31 13:15:16 +0000
committerTed Ross <tross@apache.org>2008-07-31 13:15:16 +0000
commit12b33f499c8a33d5010fedecdb267c721483f0a5 (patch)
tree0c60fb8918c0ca3ac2ca8cf020c9fa8f4c796022 /qpid/python/commands/qpid-tool
parent5ec77e5be4feca03b2c13866286a6bec911ab4fc (diff)
downloadqpid-python-12b33f499c8a33d5010fedecdb267c721483f0a5.tar.gz
QPID-1174 - Management updates for remote agents
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@681362 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/python/commands/qpid-tool')
-rwxr-xr-xqpid/python/commands/qpid-tool4
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/python/commands/qpid-tool b/qpid/python/commands/qpid-tool
index 0ab47a01e7..7301dad6e4 100755
--- a/qpid/python/commands/qpid-tool
+++ b/qpid/python/commands/qpid-tool
@@ -65,6 +65,7 @@ class Mcli (Cmd):
print " schema <className> - Print details of an object class"
print " set time-format short - Select short timestamp format (default)"
print " set time-format long - Select long timestamp format"
+ print " id [<ID>] - Display translations of display object ids"
print " quit or ^D - Exit the program"
print
@@ -93,6 +94,9 @@ class Mcli (Cmd):
except:
pass
+ def do_id (self, data):
+ self.dataObject.do_id(data)
+
def complete_schema (self, text, line, begidx, endidx):
tokens = split (line)
if len (tokens) > 2: