|
@@ -1355,7 +1355,7 @@ class CronComparedDataView(View):
|
|
|
for file in zip_ref.namelist():
|
|
|
if '汇总' not in file.encode('cp437').decode('gbk'):
|
|
|
with zip_ref.open(file) as f:
|
|
|
- reader = csv.reader(io.TextIOWrapper(f, 'utf-8'))
|
|
|
+ reader = csv.reader(io.TextIOWrapper(f, 'gbk'))
|
|
|
for row in reader:
|
|
|
data.append(row)
|
|
|
key_list = data[4]
|