ttry pyasn1-modules as well - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit f635c5110c95b216a087906526877c7e5cbb85e5
DIR parent 20060a117782f1eae30ed5b9d47ee9942e0f46b3
HTML Author: ThomasV <thomasv@gitorious>
Date: Mon, 30 Jun 2014 18:12:39 +0200
ttry pyasn1-modules as well
Diffstat:
M electrum | 2 +-
M lib/x509.py | 5 +++++
2 files changed, 6 insertions(+), 1 deletion(-)
---
DIR diff --git a/electrum b/electrum
t@@ -95,7 +95,7 @@ def print_help(parser):
parser.print_help()
print_msg("Type 'electrum help <command>' to see the help for a specific command")
print_msg("Type 'electrum --help' to see the list of options")
- run_command(known_commands['help'])
+ #run_command(known_commands['help'])
sys.exit(1)
DIR diff --git a/lib/x509.py b/lib/x509.py
t@@ -26,6 +26,11 @@ except ImportError:
sys.exit("Error: pyasn1 does not seem to be installed. Try 'sudo pip install pyasn1'")
try:
+ import pyasn1_modules
+except ImportError:
+ sys.exit("Error: pyasn1 does not seem to be installed. Try 'sudo pip install pyasn1-modules'")
+
+try:
import tlslite
except ImportError:
sys.exit("Error: tlslite does not seem to be installed. Try 'sudo pip install tlslite'")