Skip to content

Commit

Permalink
tools: read GN files in UTF-8 safe way
Browse files Browse the repository at this point in the history
  • Loading branch information
refack authored and targos committed Aug 19, 2019
1 parent ca257ea commit 01a4967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/v8_gypfiles/GN-scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
def DoMain(args):
gn_filename, pattern = args
src_root = os.path.dirname(gn_filename)
with open(gn_filename, 'r') as gn_file:
gn_content = gn_file.read().encode('utf-8')
with open(gn_filename, 'rb') as gn_file:
gn_content = gn_file.read().decode('utf-8')

scraper_re = re.compile(pattern + r'\[([^\]]+)', re.DOTALL)
matches = scraper_re.search(gn_content)
Expand Down

0 comments on commit 01a4967

Please sign in to comment.