Skip to content
Snippets Groups Projects
Commit dfee3a01 authored by Greg Stoll's avatar Greg Stoll
Browse files

Bug 1835101 - treat .ftl files as UTF-8 for linting purposes r=flod

parent 38fc7931
No related branches found
No related tags found
No related merge requests found
......@@ -441,7 +441,7 @@ def get_branding_list(root, brand_files):
for brand_path in brand_files:
brand_file = mozpath.join(root, brand_path)
if os.path.exists(brand_file):
with open(brand_file) as f:
with open(brand_file, encoding="utf-8") as f:
messages = parse(f.read())
extractor.visit(messages)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment