about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--scripts/migrate_existing_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/migrate_existing_data.py b/scripts/migrate_existing_data.py
index 3e0a250..186f7f8 100644
--- a/scripts/migrate_existing_data.py
+++ b/scripts/migrate_existing_data.py
@@ -88,8 +88,8 @@ def admin_group(conn: authdb.DbConnection, admin: User) -> Group:
         })
         cursor.execute("INSERT INTO group_users VALUES (?, ?)",
                        (str(new_group.group_id), str(admin.user_id)))
-        revoke_user_role_by_name(cursor, group_leader, "group-creator")
-        assign_user_role_by_name(cursor, group_leader, "group-leader")
+        revoke_user_role_by_name(cursor, admin, "group-creator")
+        assign_user_role_by_name(cursor, admin, "group-leader")
         return new_group
 
 def __resource_category_by_key__(