Skip to content

Commit f2a3d3c

Browse files
Update PyMsuScripterApp to use utf8 for opening yaml file
1 parent 4c15be4 commit f2a3d3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PyMsuScripterApp/py_msu_scripter_app/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def cli():
3838
print("Error: the input YAML file was not found")
3939
exit(1)
4040

41-
with open(args.input, "r") as stream:
41+
with open(args.input, "r", encoding="utf-8") as stream:
4242
try:
4343
yaml_file = yaml.safe_load(stream)
4444
except yaml.YAMLError as exc:

PyMsuScripterApp/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py-msu-scripter-app"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = ""
55
authors = ["MattEqualsCoder <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)