Skip to content

Commit 34b1019

Browse files
little fix in moodle_exporter
1 parent 3c82279 commit 34b1019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common_grade_export/src/exporters/moodle_exporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def parse_person_table(cls, data, users_params):
5353
activity_id = activity[itemname_key]["id"].split("_")[1]
5454
activity["grade"]["content"] = activity["grade"][
5555
"content"
56-
].rsplit(">", 1)[-1]
56+
].rsplit(">", 1)[-1].replace('.', ',')
5757
else:
5858
activity_name = "total"
5959
if activity["grade"]["content"] == "-":

0 commit comments

Comments
 (0)