variable format changed

merge-requests/18/head
elena 2022-08-05 09:43:58 +02:00
parent 8152d24b29
commit d9d9fc8ef0
1 changed files with 2 additions and 2 deletions

View File

@ -1674,8 +1674,8 @@ class Admin:
)
for group in madd:
cohort = [c for c in cohorts if c["name"] == group]
self.moodle.add_user_to_cohort(internaluser["moodle_id"], cohort[0]["id"])
cohort = [c for c in cohorts if c["name"] == group][0]
self.moodle.add_user_to_cohort(internaluser["moodle_id"], cohort["id"])
return True