proton: Access env variables directly when we know they are set.
This commit is contained in:
parent
3d716a9db2
commit
7c3accab4e
1 changed files with 1 additions and 1 deletions
2
proton
2
proton
|
@ -1473,7 +1473,7 @@ class Session:
|
|||
self.env["WINEDEBUG"] = "-all"
|
||||
|
||||
if "PROTON_REMOTE_DEBUG_CMD" in self.env:
|
||||
self.remote_debug_cmd = shlex.split(self.env.get("PROTON_REMOTE_DEBUG_CMD"))
|
||||
self.remote_debug_cmd = shlex.split(self.env["PROTON_REMOTE_DEBUG_CMD"])
|
||||
else:
|
||||
self.remote_debug_cmd = None
|
||||
|
||||
|
|
Loading…
Reference in a new issue