chore: correct lint error on file encoding
This commit is contained in:
parent
cee20e2c7c
commit
310a9f7ffe
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ def main(san, dump, color, filename, hosts):
|
||||||
# handle a domain given with a : in it to specify the port
|
# handle a domain given with a : in it to specify the port
|
||||||
if filename:
|
if filename:
|
||||||
hosts = []
|
hosts = []
|
||||||
with open(filename, "r") as infile:
|
with open(filename, "r", encoding="utf-8") as infile:
|
||||||
for line in infile:
|
for line in infile:
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
hosts.append(line)
|
hosts.append(line)
|
||||||
|
|
Loading…
Reference in a new issue