Skip to content

Commit

Permalink
fix license encoding on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mjurbanski-reef committed Aug 17, 2023
1 parent ce3b306 commit 569babe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion b2/console_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -3449,7 +3449,7 @@ def _setup_parser(cls, parser):

def run(self, args):
if self.LICENSE_OUTPUT_FILE.exists() and not args.dump:
self._print(self.LICENSE_OUTPUT_FILE.read_text())
self._print(self.LICENSE_OUTPUT_FILE.read_text(encoding='utf8'))
return 0

if args.dump:
Expand Down

0 comments on commit 569babe

Please sign in to comment.