Fix error reporting while removing exception breakpoint (PY-13436).

This commit is contained in:
Dmitry Trofimov
2014-07-07 13:03:55 +02:00
parent 05bc093891
commit f99a8a0250
+1 -1
View File
@@ -814,7 +814,7 @@ class PyDB:
del self.exception_set[exception]
self.always_exception_set.remove(exception)
except:
pydev_log.debug("Error while removing exception"%sys.exc_info()[0]);
pydev_log.debug("Error while removing exception %s"%sys.exc_info()[0]);
update_exception_hook(self)
elif cmd_id == CMD_LOAD_SOURCE: