--- a/Debugger/DebuggerInterfacePython.py Sat Jun 04 11:21:53 2011 +0200 +++ b/Debugger/DebuggerInterfacePython.py Sat Jun 04 18:26:09 2011 +0200 @@ -216,7 +216,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) @@ -308,7 +308,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)