From 4faa6b285cfe77de00bda25a57c9a6aaf717a6c4 Mon Sep 17 00:00:00 2001 From: John Glover Date: Mon, 23 Jan 2012 13:46:56 +0000 Subject: [PATCH] [1696][controllers] Fix typo --- ckan/controllers/package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)