mirror of
https://github.com/vysecurity/LinkedInt.git
synced 2025-12-06 08:52:29 +01:00
Fix for exporting csv file
This commit is contained in:
parent
517871b4e9
commit
9e62818eb6
1 changed files with 1 additions and 1 deletions
|
|
@ -311,7 +311,7 @@ def get_search():
|
|||
f.close()
|
||||
f = open(baseDir + '{}.csv'.format(outfile), 'wb')
|
||||
newcsv='\n'.join(csv)
|
||||
f.writelines(newcsv.encode())
|
||||
f.write(newcsv.encode())
|
||||
for x in csv:
|
||||
f.write(x.join('\n').encode())
|
||||
f.close()
|
||||
|
|
|
|||
Loading…
Reference in a new issue