diff options
| author | Ted Ross <tross@apache.org> | 2008-07-31 13:15:16 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2008-07-31 13:15:16 +0000 |
| commit | 12b33f499c8a33d5010fedecdb267c721483f0a5 (patch) | |
| tree | 0c60fb8918c0ca3ac2ca8cf020c9fa8f4c796022 /qpid/python/commands/qpid-tool | |
| parent | 5ec77e5be4feca03b2c13866286a6bec911ab4fc (diff) | |
| download | qpid-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-x | qpid/python/commands/qpid-tool | 4 |
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: |
