Skip to content

Commit

Permalink
Fix typo in 'paster datastore resubmit'
Browse files Browse the repository at this point in the history
"resources_ids" should be "resource_ids".  Causes resubmit command to fail.
  • Loading branch information
argv0 committed Aug 26, 2016
1 parent 4275ac1 commit 1fa8a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/datapusher/cli.py
Expand Up @@ -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):
Expand Down

0 comments on commit 1fa8a34

Please sign in to comment.