Skip to content

Commit

Permalink
Update crowdstrike_vulnerabilities_csv.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kuffers authored Jul 28, 2021
1 parent 0c9d436 commit 504ab8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crowdstrike/crowdstrike_vulnerabilities_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

def customParser(inputPath, outputPath):

with open(inputPath, 'r', newline='') as input_file:
with open(inputPath, 'r', newline='', encoding='utf-8') as input_file:

# Create the csv file for writing
with open(outputPath, 'w', newline='') as csvfile:
Expand Down

0 comments on commit 504ab8a

Please sign in to comment.