Make sure of UTF-8 encoding.
This commit is contained in:
parent
cbe3048ef2
commit
362080f9a4
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ def main():
|
|||
conn = sqlite3.connect(args.kismet)
|
||||
cursor = conn.cursor()
|
||||
|
||||
with open(args.csv, newline='') as infile, open(args.output, 'w', newline='') as outfile:
|
||||
with open(args.csv, newline='') as infile, open(args.output, 'w', newline='', encoding='utf-8') as outfile:
|
||||
reader = csv.DictReader(infile)
|
||||
fieldnames = reader.fieldnames + [
|
||||
"ClientsOnAP", "ClientsOnChannel", "APsOnChannel", "CongestionScore",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue