mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 15:31:31 +00:00
fix #4075
This commit is contained in:
parent
c1d14b9677
commit
449734f3a0
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ class Console(QtWidgets.QPlainTextEdit):
|
|||
exec(command, self.namespace, self.namespace)
|
||||
except SystemExit:
|
||||
self.close()
|
||||
except Exception:
|
||||
except BaseException:
|
||||
traceback_lines = traceback.format_exc().split('\n')
|
||||
# Remove traceback mentioning this file, and a linebreak
|
||||
for i in (3,2,1,-1):
|
||||
|
|
Loading…
Add table
Reference in a new issue