From 1fa8a348acc8b352fd4f5e87e7e25e6815e24ab4 Mon Sep 17 00:00:00 2001 From: Andy Gross Date: Fri, 26 Aug 2016 08:43:51 -0700 Subject: [PATCH] Fix typo in 'paster datastore resubmit' "resources_ids" should be "resource_ids". Causes resubmit command to fail. --- ckanext/datapusher/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ckanext/datapusher/cli.py b/ckanext/datapusher/cli.py index 76eaaf89d6c..fd4adf27003 100644 --- a/ckanext/datapusher/cli.py +++ b/ckanext/datapusher/cli.py @@ -60,7 +60,7 @@ def _confirm_or_abort(self): sys.exit(0) def _resubmit_all(self): - resources_ids = datastore_db.get_all_resources_ids_in_datastore() + resource_ids = datastore_db.get_all_resources_ids_in_datastore() self._submit(resource_ids) def _submit_all_packages(self):