From 7c05f60eb51c302a0c90221f111e9de7e65c4fb3 Mon Sep 17 00:00:00 2001 From: Jonathan Cairns Date: Tue, 13 Nov 2012 23:00:33 +0000 Subject: [PATCH] Fixed exception on detach --- plugin/python/vdebug/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/python/vdebug/runner.py b/plugin/python/vdebug/runner.py index 8991e9bc..402f08b0 100644 --- a/plugin/python/vdebug/runner.py +++ b/plugin/python/vdebug/runner.py @@ -274,7 +274,7 @@ def detach(self): if not self.is_alive(): self.ui.error("Cannot detach: no debugger connection") else: - self.say("Detaching the debugger") + self.ui.say("Detaching the debugger") self.api.detach() def close_connection(self,stop = True):