mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 01:35:20 +00:00
display error details for unexpected errors
This commit is contained in:
parent
038c57994f
commit
f71dd322dd
1 changed files with 2 additions and 2 deletions
|
@ -196,8 +196,8 @@ class Plugin(BasePlugin):
|
||||||
except DNSException:
|
except DNSException:
|
||||||
err = _('Unhandled exception.')
|
err = _('Unhandled exception.')
|
||||||
continue
|
continue
|
||||||
except:
|
except Exception,e:
|
||||||
err = _('Unknown error.')
|
err = _('Unexpected error: ' + str(e))
|
||||||
continue
|
continue
|
||||||
break
|
break
|
||||||
if err:
|
if err:
|
||||||
|
|
Loading…
Add table
Reference in a new issue