We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48661d2 commit 184a7ccCopy full SHA for 184a7cc
slip39/gui/main.py
@@ -862,7 +862,7 @@ def app(
862
txt_name = '-'.join( [ 'SLIP', '39' ] + txt_segs[:txt_i] ) + '.txt'
863
txt_path = os.path.join( os.path.dirname( __file__ ), txt_name )
864
try:
865
- with open( txt_path, 'r' ) as txt_f:
+ with open( txt_path, 'r', encoding='utf-8' ) as txt_f:
866
txt = txt_f.read()
867
if txt:
868
instructions = txt
0 commit comments