Debugger/DebuggerInterfacePython3.py

changeset 5162
bbf2bb2d533c
parent 5140
01484c0afbc6
child 5179
5f56410e7624
equal deleted inserted replaced
5161:f7b6ded9cc37 5162:bbf2bb2d533c
849 """ 849 """
850 import json 850 import json
851 851
852 try: 852 try:
853 commandDict = json.loads(jsonStr.strip()) 853 commandDict = json.loads(jsonStr.strip())
854 except json.JSONDecodeError as err: 854 except (TypeError, ValueError) as err:
855 E5MessageBox.critical( 855 E5MessageBox.critical(
856 None, 856 None,
857 self.tr("Debug Protocol Error"), 857 self.tr("Debug Protocol Error"),
858 self.tr("""<p>The response received from the debugger""" 858 self.tr("""<p>The response received from the debugger"""
859 """ backend could not be decoded. Please report""" 859 """ backend could not be decoded. Please report"""

eric ide

mercurial