Skip to content
Snippets Groups Projects
Commit eba39750 authored by hkethi002's avatar hkethi002 Committed by GitHub
Browse files

Merge pull request #835 from scitran/site-bootstrap-fix

Tuple is not overindexed when bootstrapping roles
parents 061d1e6b b7fb9dc2
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ def _upsert_role(request_session, api_url, role_doc, group_id):
return new_role_resp
# Already exists, update instead
full_role_url = "{0}/{1}/{2}".format(base_role_url, role_doc['_id'])
full_role_url = "{0}/{1}".format(base_role_url, role_doc['_id'])
return request_session.put(full_role_url, json=role_doc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment