Skip to content

Commit

Permalink
Use comma aus delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
webrian authored Oct 15, 2023
1 parent fb23d8f commit 2099f78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/write-courses.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def run():
filename = f"../_includes/courstable-%s.html" % (lang)

with open(f"../_data/kurse-cours.csv", newline='') as csvfile:
reader = csv.reader(csvfile, delimiter=";")
reader = csv.reader(csvfile, delimiter=",")

# Skip header row
next(reader, None)
Expand Down

0 comments on commit 2099f78

Please sign in to comment.