DebugClients/Python3/DebugClientBase.py

branch
6_1_x
changeset 4848
36b1d9bec8f6
parent 4835
371c03e08f7b
child 4946
c7b333448ad5
diff -r fcb19b666d96 -r 36b1d9bec8f6 DebugClients/Python3/DebugClientBase.py
--- a/DebugClients/Python3/DebugClientBase.py	Sat Mar 12 15:44:24 2016 +0100
+++ b/DebugClients/Python3/DebugClientBase.py	Sun Mar 13 12:48:53 2016 +0100
@@ -1972,13 +1972,14 @@
         state = 0
         try:
             comp = completer(text, state)
+        except Exception:
             comp = None
         while comp is not None:
             completions.add(comp)
             state += 1
             try:
                 comp = completer(text, state)
-            except:
+            except Exception:
                 comp = None
 
     def startDebugger(self, filename=None, host=None, port=None,

eric ide

mercurial