Skip to content

Commit

Permalink
More fixes for UTF-8 characters in manifests files
Browse files Browse the repository at this point in the history
  • Loading branch information
pyhalov committed Mar 10, 2020
1 parent 900da3c commit d149651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/client/transport/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -1776,7 +1776,7 @@ def _verify_manifest(self, fmri, mfstpath=None, content=None, pub=None):
return False

if mfstpath:
mf = open(mfstpath)
mf = open(mfstpath, "r", encoding="UTF-8")
mcontent = mf.read()
mf.close()
elif content is not None:
Expand Down

0 comments on commit d149651

Please sign in to comment.