diff --git a/ckan/controllers/package.py b/ckan/controllers/package.py index 92c44b45a72..a1ae32460db 100644 --- a/ckan/controllers/package.py +++ b/ckan/controllers/package.py @@ -455,7 +455,7 @@ def new(self, data=None, errors=None, error_summary=None): self._setup_template_variables(context, {'id': id}) - # TODO: This check is to maintain backwards compatibility the old way of creating + # TODO: This check is to maintain backwards compatibility with the old way of creating # custom forms. This behaviour is now deprecated. if hasattr(self, 'package_form'): c.form = render(self.package_form, extra_vars=vars) @@ -501,7 +501,7 @@ def edit(self, id, data=None, errors=None, error_summary=None): self._setup_template_variables(context, {'id': id}, package_type=package_type) - # TODO: This check is to maintain backwards compatibility the old way of creating + # TODO: This check is to maintain backwards compatibility with the old way of creating # custom forms. This behaviour is now deprecated. if hasattr(self, 'package_form'): c.form = render(self.package_form, extra_vars=vars)