fix: check_seed command import path

This commit is contained in:
Antoine Riard 2017-10-20 12:03:02 -04:00
parent 5a45f257ca
commit 9ebca74724
1 changed files with 1 additions and 1 deletions

View File

@ -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')