1
0

kivy wizard: add space button

This commit is contained in:
ThomasV
2016-02-15 09:14:27 +01:00
parent 4d3ce06b6d
commit 83c68142e0
3 changed files with 18 additions and 8 deletions

View File

@@ -134,7 +134,7 @@ class Mnemonic(object):
def get_suggestions(self, prefix):
for w in self.wordlist:
if w.startswith(prefix) and w!=prefix:
if w.startswith(prefix):
yield w
def mnemonic_decode(self, seed):