Ritchie damn it! Unicode

This commit is contained in:
Christoffer Viken 2017-02-10 14:00:11 +00:00
parent ec977fe155
commit ba8f80e4aa
1 changed files with 1 additions and 1 deletions

View File

@ -837,7 +837,7 @@ class ShowUserMenu(Menu):
text = ''
text += 'Products purchased:\n'
for product, count in products:
text += '{0:<47} {1:>3}\n'.format(product.name, count)
text += u'{0:<47} {1:>3}\n'.format(product.name, count)
less(text)