htmlreport: Use source_encoding to open XML files
This commit is contained in:
parent
a703f643f9
commit
d3a71916aa
|
@ -296,7 +296,7 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
source_filename = os.path.join(source_dir, filename)
|
source_filename = os.path.join(source_dir, filename)
|
||||||
try:
|
try:
|
||||||
with io.open(source_filename, 'r') as input_file:
|
with io.open(source_filename, 'r', encoding=options.source_encoding) as input_file:
|
||||||
content = input_file.read()
|
content = input_file.read()
|
||||||
except IOError:
|
except IOError:
|
||||||
sys.stderr.write("ERROR: Source file '%s' not found.\n" %
|
sys.stderr.write("ERROR: Source file '%s' not found.\n" %
|
||||||
|
|
Loading…
Reference in New Issue