mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
changed a couple exceptions to describe import errors
This commit is contained in:
parent
2d13107897
commit
49ac4d73e3
1 changed files with 2 additions and 2 deletions
|
@ -105,7 +105,7 @@ class SimpleConfig:
|
|||
if os.path.exists(name):
|
||||
try:
|
||||
import ConfigParser
|
||||
except:
|
||||
except ImportError:
|
||||
print "cannot parse electrum.conf. please install ConfigParser"
|
||||
return
|
||||
|
||||
|
@ -125,7 +125,7 @@ class SimpleConfig:
|
|||
if os.path.exists(name):
|
||||
try:
|
||||
import ConfigParser
|
||||
except:
|
||||
except ImportError:
|
||||
print "cannot parse electrum.conf. please install ConfigParser"
|
||||
return
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue