214 try: |
214 try: |
215 key, value = el.split('=', 1) |
215 key, value = el.split('=', 1) |
216 if value.startswith('"') or value.startswith("'"): |
216 if value.startswith('"') or value.startswith("'"): |
217 value = value[1:-1] |
217 value = value[1:-1] |
218 clientEnv[str(key)] = str(value) |
218 clientEnv[str(key)] = str(value) |
219 except UnpackError: |
219 except ValueError: |
220 pass |
220 pass |
221 |
221 |
222 ipaddr = self.debugServer.getHostAddress(True) |
222 ipaddr = self.debugServer.getHostAddress(True) |
223 if runInConsole or Preferences.getDebugger("ConsoleDbgEnabled"): |
223 if runInConsole or Preferences.getDebugger("ConsoleDbgEnabled"): |
224 ccmd = Preferences.getDebugger("ConsoleDbgCommand") |
224 ccmd = Preferences.getDebugger("ConsoleDbgCommand") |
306 try: |
306 try: |
307 key, value = el.split('=', 1) |
307 key, value = el.split('=', 1) |
308 if value.startswith('"') or value.startswith("'"): |
308 if value.startswith('"') or value.startswith("'"): |
309 value = value[1:-1] |
309 value = value[1:-1] |
310 clientEnv[str(key)] = str(value) |
310 clientEnv[str(key)] = str(value) |
311 except UnpackError: |
311 except ValueError: |
312 pass |
312 pass |
313 |
313 |
314 ipaddr = self.debugServer.getHostAddress(True) |
314 ipaddr = self.debugServer.getHostAddress(True) |
315 if runInConsole or project.getDebugProperty("CONSOLEDEBUGGER"): |
315 if runInConsole or project.getDebugProperty("CONSOLEDEBUGGER"): |
316 ccmd = project.getDebugProperty("CONSOLECOMMAND") or \ |
316 ccmd = project.getDebugProperty("CONSOLECOMMAND") or \ |