210 try: |
210 try: |
211 key, value = el.split('=', 1) |
211 key, value = el.split('=', 1) |
212 if value.startswith('"') or value.startswith("'"): |
212 if value.startswith('"') or value.startswith("'"): |
213 value = value[1:-1] |
213 value = value[1:-1] |
214 clientEnv[str(key)] = str(value) |
214 clientEnv[str(key)] = str(value) |
215 except UnpackError: |
215 except ValueError: |
216 pass |
216 pass |
217 |
217 |
218 ipaddr = self.debugServer.getHostAddress(True) |
218 ipaddr = self.debugServer.getHostAddress(True) |
219 if runInConsole or Preferences.getDebugger("ConsoleDbgEnabled"): |
219 if runInConsole or Preferences.getDebugger("ConsoleDbgEnabled"): |
220 ccmd = Preferences.getDebugger("ConsoleDbgCommand") |
220 ccmd = Preferences.getDebugger("ConsoleDbgCommand") |
302 try: |
302 try: |
303 key, value = el.split('=', 1) |
303 key, value = el.split('=', 1) |
304 if value.startswith('"') or value.startswith("'"): |
304 if value.startswith('"') or value.startswith("'"): |
305 value = value[1:-1] |
305 value = value[1:-1] |
306 clientEnv[str(key)] = str(value) |
306 clientEnv[str(key)] = str(value) |
307 except UnpackError: |
307 except ValueError: |
308 pass |
308 pass |
309 |
309 |
310 ipaddr = self.debugServer.getHostAddress(True) |
310 ipaddr = self.debugServer.getHostAddress(True) |
311 if runInConsole or project.getDebugProperty("CONSOLEDEBUGGER"): |
311 if runInConsole or project.getDebugProperty("CONSOLEDEBUGGER"): |
312 ccmd = project.getDebugProperty("CONSOLECOMMAND") or \ |
312 ccmd = project.getDebugProperty("CONSOLECOMMAND") or \ |