Skip to content

Commit

Permalink
Merge pull request #24 from trots/Replace-delimiter
Browse files Browse the repository at this point in the history
Replace delimiter
  • Loading branch information
trofim4ik committed Jun 5, 2024
2 parents afbdd1c + 8269632 commit 9952b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube-analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ def _on_export_csv(self):
self._settings.set(Settings.LastSaveDir, QFileInfo(file_name[0]).dir().absolutePath())

with open(file_name[0], 'w', newline='', encoding='utf-8') as csvfile:
csv_writer = csv.writer(csvfile, delimiter=';')
csv_writer = csv.writer(csvfile, delimiter=',')

header_csv = []
for column in range(len(self._model.header)):
Expand Down

0 comments on commit 9952b1b

Please sign in to comment.