Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

Commit

Permalink
set experimenter notes default to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
alee committed Mar 19, 2015
1 parent fa8b40f commit c8753c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcweb/core/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def is_email_available(request):
@group_required(PermissionGroup.experimenter, PermissionGroup.demo_experimenter)
def save_experimenter_notes(request):
experiment_id = request.POST.get('experiment_id')
notes = request.POST.get('notes')
notes = request.POST.get('notes', '')
round_data_id = request.POST.get('round_data_id', None)
round_data = None
experiment = _get_experiment(request, experiment_id)
Expand Down

0 comments on commit c8753c5

Please sign in to comment.