mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2026-01-09 16:07:55 +01:00
proton: Don't assign exception to a variable when the value is not used.
This commit is contained in:
parent
732a1296a1
commit
730acf592b
1 changed files with 1 additions and 1 deletions
2
proton
2
proton
|
|
@ -1542,7 +1542,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…
Add table
Add a link
Reference in a new issue