mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-19 02:17:38 +03:00
Fixes another binary versus string issue in collate.py
This commit is contained in:
parent
27d7265c86
commit
5beac17553
@ -104,7 +104,7 @@ def addmodules(data):
|
||||
os.unlink(outfile+'.bak')
|
||||
os.rename(outfile, outfile+'.bak')
|
||||
|
||||
with open(outfile, 'wb') as csvfile:
|
||||
with open(outfile, 'w') as csvfile:
|
||||
writer = csv.DictWriter(csvfile, fields, extrasaction='ignore')
|
||||
writer.writeheader()
|
||||
for key in sorted(modules):
|
||||
|
Loading…
x
Reference in New Issue
Block a user