Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanimir Agovic2018-12-28 17:19:17 +0000
committerSanimir Agovic2019-01-02 19:14:57 +0000
commit8d28161c51e71d8e556a62481bcdf50e644f1865 (patch)
tree105b328d67af5ed0c75bb8ab2b7e0bfd82975742 /python/src/tcf/services
parentf50b35a8148b61d2fcb7f7a29eb671fdbcd1c581 (diff)
downloadorg.eclipse.tcf-8d28161c51e71d8e556a62481bcdf50e644f1865.tar.gz
org.eclipse.tcf-8d28161c51e71d8e556a62481bcdf50e644f1865.tar.xz
org.eclipse.tcf-8d28161c51e71d8e556a62481bcdf50e644f1865.zip
TCF Python: fix missing NotImplementedError exception
The disassemble command silenty returned instead of raising a NotImplementedError exception. Change-Id: I689d5909502670fcba009e483f61b1a4a5e9d307 Signed-off-by: Sanimir Agovic <sanimir@subpath.org>
Diffstat (limited to 'python/src/tcf/services')
-rw-r--r--python/src/tcf/services/disassembly.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/src/tcf/services/disassembly.py b/python/src/tcf/services/disassembly.py
index d80e558ad..1e7f03425 100644
--- a/python/src/tcf/services/disassembly.py
+++ b/python/src/tcf/services/disassembly.py
@@ -189,6 +189,7 @@ class DisassemblyService(services.Service):
:returns: pending command handle.
"""
+ raise NotImplementedError("Abstract method")
class DoneGetCapabilities(object):

Back to the top