★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/dbdc3818e0Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
tools: check-imports using utf-8
PR-URL: #30220
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
cclauss authored and MylesBorins committed Nov 17, 2019
1 parent c568eb5 commit dbdc3818e03ee1391d23268089661474505f5ef3
Showing with 2 additions and 1 deletion.
  1. +2 −1 tools/check-imports.py
@@ -2,6 +2,7 @@

from __future__ import print_function
import glob
import io
import re
import sys

@@ -15,7 +16,7 @@ def do_exist(file_name, lines, imported):


def is_valid(file_name):
with open(file_name) as source_file:
with io.open(file_name, encoding='utf-8') as source_file:
lines = [line.strip() for line in source_file]

usings, importeds, line_numbers, valid = [], [], [], True

0 comments on commit dbdc381

Please sign in to comment.