diff options
Diffstat (limited to 'python/src/tcf/services/remote/BreakpointsProxy.py')
-rw-r--r-- | python/src/tcf/services/remote/BreakpointsProxy.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/src/tcf/services/remote/BreakpointsProxy.py b/python/src/tcf/services/remote/BreakpointsProxy.py index 35cec5c5b..7111c5a48 100644 --- a/python/src/tcf/services/remote/BreakpointsProxy.py +++ b/python/src/tcf/services/remote/BreakpointsProxy.py @@ -9,7 +9,6 @@ # * Wind River Systems - initial API and implementation
# *******************************************************************************
-import exceptions
from tcf import channel
from tcf.services import breakpoints
from tcf.channel.Command import Command
@@ -46,7 +45,7 @@ class ChannelEventListener(channel.EventListener): self.listener.contextRemoved(args[0])
else:
raise IOError("Breakpoints service: unknown event: " + name);
- except exceptions.Exception as x:
+ except Exception as x:
self.service.channel.terminate(x)
class BreakpointsProxy(breakpoints.BreakpointsService):
|