We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee14038 commit 3761124Copy full SHA for 3761124
commitizen/changelog_formats/base.py
@@ -24,6 +24,7 @@ def __init__(self, config: BaseConfig):
24
# Constructor needs to be redefined because `Protocol` prevent instantiation by default
25
# See: https://bugs.python.org/issue44807
26
self.config = config
27
+ self.encoding = self.config.settings["encoding"]
28
29
@property
30
def version_parser(self) -> Pattern:
@@ -33,7 +34,7 @@ def get_metadata(self, filepath: str) -> Metadata:
33
34
if not os.path.isfile(filepath):
35
return Metadata()
36
- with open(filepath) as changelog_file:
37
+ with open(filepath, encoding=self.encoding) as changelog_file:
38
return self.get_metadata_from_file(changelog_file)
39
40
def get_metadata_from_file(self, file: IO[Any]) -> Metadata:
0 commit comments