mirror of
https://github.com/ValveSoftware/Proton.git
synced 2025-01-14 07:38:11 +03:00
proton: Don't assign exception to a variable when the value is not used.
This commit is contained in:
parent
9fcb2d183a
commit
0f94a21b5e
2
proton
2
proton
@ -1556,7 +1556,7 @@ class Session:
|
|||||||
remote_debug_proc.kill()
|
remote_debug_proc.kill()
|
||||||
try:
|
try:
|
||||||
remote_debug_proc.communicate(2)
|
remote_debug_proc.communicate(2)
|
||||||
except subprocess.TimeoutExpired as e:
|
except subprocess.TimeoutExpired:
|
||||||
log("terminate remote debugger")
|
log("terminate remote debugger")
|
||||||
remote_debug_proc.terminate()
|
remote_debug_proc.terminate()
|
||||||
remote_debug_proc.communicate()
|
remote_debug_proc.communicate()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user