Merge branch 'fix-checker' of evilham/registry into master

This commit is contained in:
jrb0001 2017-12-03 12:22:19 +00:00 committed by dn42 Git Service
commit a6165c242d

View file

@ -154,7 +154,7 @@ class FileDOM:
schema = None
src = fn
with open(fn, "r") as f:
with open(fn, mode='r', encoding='utf-8') as f:
for lineno, i in enumerate(f.readlines(), 1):
if re.match(r'[ \t]', i):