mirror of
https://github.com/hexedtech/codemp-sublime.git
synced 2025-03-29 21:01:34 +01:00
fix: properly reraise the exception from browser
This commit is contained in:
parent
f4b16f1367
commit
b79e25748c
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class QPServerBrowser():
|
||||||
try: self.window.run_command(
|
try: self.window.run_command(
|
||||||
"codemp_join_workspace", {"workspace_id": wid})
|
"codemp_join_workspace", {"workspace_id": wid})
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return
|
raise e
|
||||||
|
|
||||||
ws = workspaces.lookupId(wid)
|
ws = workspaces.lookupId(wid)
|
||||||
buffers = ws.handle.fetch_buffers()
|
buffers = ws.handle.fetch_buffers()
|
||||||
|
|
Loading…
Add table
Reference in a new issue