diff options
| -rwxr-xr-x | tools/src/py/qmf-tool | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/src/py/qmf-tool b/tools/src/py/qmf-tool index 3ea327b29a..e366d04709 100755 --- a/tools/src/py/qmf-tool +++ b/tools/src/py/qmf-tool @@ -128,12 +128,16 @@ class Mcli(Cmd): try: self.dataObject.do_query(data) except Exception, e: + if e.message.__class__ == qmf2.Data: + e = e.message.getProperties() print "Exception in query command:", e def do_call(self, data): try: self.dataObject.do_call(data) except Exception, e: + if e.message.__class__ == qmf2.Data: + e = e.message.getProperties() print "Exception in call command:", e def do_clear(self, data): |
