apps.management: align dots in reset_device

This commit is contained in:
Pavol Rusnak 2018-02-05 15:51:03 +01:00
parent 00c4da83b9
commit 8b49e04ade
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ async def show_mnemonic(ctx, mnemonic: str):
@ui.layout
async def show_mnemonic_page(page: int, page_count: int, pages: list):
lines = ['%d. %s' % (wi + 1, word) for wi, word in pages[page]]
lines = ['%2d. %s' % (wi + 1, word) for wi, word in pages[page]]
content = Text('Recovery seed', ui.ICON_RESET, ui.MONO, *lines)
content = Scrollpage(content, page, page_count)
ui.display.clear()