From 9ebca74724f572e49d02e3035bb49286c7007735 Mon Sep 17 00:00:00 2001 From: Antoine Riard Date: Fri, 20 Oct 2017 12:03:02 -0400 Subject: [PATCH] fix: check_seed command import path --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 0416a69a..fd5aa3e0 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -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')