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 | 9fb5fd7a0a800591c334bde2b9556e984217d7de (patch) | |
| tree | c632c481f9cbf647d4ce453ff1076895866fc5e7 /python/commands | |
| parent | 033f088884f2e6bbc08d6027e1507b6d67eaad53 (diff) | |
| download | qpid-python-9fb5fd7a0a800591c334bde2b9556e984217d7de.tar.gz | |
QPID-1174 - Management updates for remote agents
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@681362 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/commands')
| -rwxr-xr-x | python/commands/qpid-tool | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/commands/qpid-tool b/python/commands/qpid-tool index 0ab47a01e7..7301dad6e4 100755 --- a/python/commands/qpid-tool +++ b/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: |
