diff --git a/ckan/logic/action/update.py b/ckan/logic/action/update.py index 647df5a1446..809cca9a472 100644 --- a/ckan/logic/action/update.py +++ b/ckan/logic/action/update.py @@ -620,7 +620,7 @@ def group_update(context, data_dict): ''' # Callers that set context['allow_partial_update'] = True can choose to not - # to specify particular keys and they will be left at their existing + # specify particular keys and they will be left at their existing # values. This includes: packages, users, groups, tags, extras return _group_or_org_update(context, data_dict) @@ -643,7 +643,7 @@ def organization_update(context, data_dict): ''' # Callers that set context['allow_partial_update'] = True can choose to not - # to specify particular keys and they will be left at their existing + # specify particular keys and they will be left at their existing # values. This includes: users, groups, tags, extras return _group_or_org_update(context, data_dict, is_org=True)