From ef008c31cb2383d587f3f405cf20d723e19e6d37 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 26 Jul 2012 23:00:37 -0400 Subject: [PATCH] Fix the binding of the bootstrap app links --- apps/bootstrap/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/bootstrap/__init__.py b/apps/bootstrap/__init__.py index ac50d1e698..31bf678d86 100644 --- a/apps/bootstrap/__init__.py +++ b/apps/bootstrap/__init__.py @@ -8,5 +8,5 @@ from .api import BootstrapSimple, BootstrapPermit register_setup(database_bootstrap) register_setup(erase_database_link) -bind_links(BootstrapSimple, [bootstrap_execute]) -bind_links(BootstrapPermit, [bootstrap_execute]) +bind_links([BootstrapSimple], [bootstrap_execute]) +bind_links([BootstrapPermit], [bootstrap_execute])