622 try: |
622 try: |
623 key, value = el.split('=', 1) |
623 key, value = el.split('=', 1) |
624 if value.startswith('"') or value.startswith("'"): |
624 if value.startswith('"') or value.startswith("'"): |
625 value = value[1:-1] |
625 value = value[1:-1] |
626 envdict[key] = value |
626 envdict[key] = value |
627 except UnpackError: |
627 except ValueError: |
628 pass |
628 pass |
629 self.debuggerInterface.remoteEnvironment(envdict) |
629 self.debuggerInterface.remoteEnvironment(envdict) |
630 |
630 |
631 def remoteLoad(self, fn, argv, wd, env, autoClearShell = True, |
631 def remoteLoad(self, fn, argv, wd, env, autoClearShell = True, |
632 tracePython = False, autoContinue = True, forProject = False, |
632 tracePython = False, autoContinue = True, forProject = False, |