mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 20:35:13 +00:00
added TypeError category to existing exception
This commit is contained in:
parent
4a85b9db62
commit
86da219fb9
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ class SimpleConfig:
|
||||||
import ast
|
import ast
|
||||||
try:
|
try:
|
||||||
out = ast.literal_eval(out)
|
out = ast.literal_eval(out)
|
||||||
except:
|
except TypeError:
|
||||||
print "type error, using default value"
|
print "type error, using default value"
|
||||||
out = default
|
out = default
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue