Browse Source

changed a couple exceptions to describe import errors

283
Jimbo77 12 years ago
parent
commit
49ac4d73e3
  1. 4
      lib/simple_config.py

4
lib/simple_config.py

@ -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…
Cancel
Save