URI: 
       tMerge pull request #3075 from ariard/fix_check_seed - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 4b60513d5e8e780aa5f31cb217646b931f5a1e06
   DIR parent 5a45f257cad2f2077fc2acda872b48e12d2bc1c9
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 20 Oct 2017 18:31:25 +0200
       
       Merge pull request #3075 from ariard/fix_check_seed
       
       fix: [check_seed command] import path
       Diffstat:
         M lib/commands.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/commands.py b/lib/commands.py
       t@@ -176,7 +176,7 @@ class Commands:
            @command('')
            def check_seed(self, seed, entropy=1, language=None):
                """Check that a seed was generated with given entropy"""
       -        from mnemonic import Mnemonic
       +        from .mnemonic import Mnemonic
                return Mnemonic(language).check_seed(seed, entropy)
        
            @command('n')