Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kbecker42 committed Aug 15, 2022
1 parent 37c496e commit b9f217a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybossa/view/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3202,7 +3202,7 @@ def coowners(short_name):
# save contacts
new_list = [int(x) for x in json.loads(request.data).get('contacts', [])]
auditlogger.log_event(project, current_user, 'update', 'project.contacts',
project.info['contacts'], new_list)
project.info.get('contacts'), new_list)
project.info['contacts'] = new_list

project_repo.save(project)
Expand Down

0 comments on commit b9f217a

Please sign in to comment.