diff options
| author | Carl C. Trieloff <cctrieloff@apache.org> | 2008-04-24 15:24:51 +0000 |
|---|---|---|
| committer | Carl C. Trieloff <cctrieloff@apache.org> | 2008-04-24 15:24:51 +0000 |
| commit | 841ceb18e777e49ccddc189419265f5e0b20fedf (patch) | |
| tree | cdd95ace16bdd35e40970ee6861f8b8e1c67c0ea /python/commands/qpid-tool | |
| parent | d42b7bc8854f30c397c65641bc7adaeb21808e21 (diff) | |
| download | qpid-python-841ceb18e777e49ccddc189419265f5e0b20fedf.tar.gz | |
QPID-953 from tross
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@651290 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/commands/qpid-tool')
| -rwxr-xr-x | python/commands/qpid-tool | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/commands/qpid-tool b/python/commands/qpid-tool index 02579b9d35..1aee3a1b7f 100755 --- a/python/commands/qpid-tool +++ b/python/commands/qpid-tool @@ -111,9 +111,17 @@ class Mcli (Cmd): def do_EOF (self, data): print "quit" + try: + self.dataObject.do_exit () + except: + pass return True def do_quit (self, data): + try: + self.dataObject.do_exit () + except: + pass return True def postcmd (self, stop, line): |
