--- a/Debugger/DebuggerInterfacePython3.py Sat Jun 04 11:21:53 2011 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Sat Jun 04 18:26:09 2011 +0200 @@ -212,7 +212,7 @@ if value.startswith('"') or value.startswith("'"): value = value[1:-1] clientEnv[str(key)] = str(value) - except UnpackError: + except ValueError: pass ipaddr = self.debugServer.getHostAddress(True) @@ -304,7 +304,7 @@ if value.startswith('"') or value.startswith("'"): value = value[1:-1] clientEnv[str(key)] = str(value) - except UnpackError: + except ValueError: pass ipaddr = self.debugServer.getHostAddress(True)