From c3f7c6946ff7864f32dc76d4b134d38279d8c0da Mon Sep 17 00:00:00 2001 From: Marc Aymerich Date: Wed, 3 Jun 2015 12:51:47 +0000 Subject: [PATCH] Fixed orchestration management command --- .../contrib/orchestration/management/commands/orchestrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchestra/contrib/orchestration/management/commands/orchestrate.py b/orchestra/contrib/orchestration/management/commands/orchestrate.py index d4a35ee3..ae3458d8 100644 --- a/orchestra/contrib/orchestration/management/commands/orchestrate.py +++ b/orchestra/contrib/orchestration/management/commands/orchestrate.py @@ -76,7 +76,7 @@ class Command(BaseCommand): servers = [] # Print scripts for key, value in scripts.items(): - route, __ = key + route, __, __ = key backend, operations = value servers.append(str(route.host)) self.stdout.write('# Execute on %s' % route.host)