From c9aa79ee61f2eaceb0fc0aea8b903ebcc371ca83 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Fri, 22 Apr 2016 12:32:25 +0200
Subject: [PATCH] [backend] Minor cleanup

---
 beat/web/backend/management/commands/qsetup.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/beat/web/backend/management/commands/qsetup.py b/beat/web/backend/management/commands/qsetup.py
index 5c57beeaf..080d86964 100644
--- a/beat/web/backend/management/commands/qsetup.py
+++ b/beat/web/backend/management/commands/qsetup.py
@@ -104,7 +104,7 @@ class Command(BaseCommand):
                 default=False, help='Delete all environment/worker/queues ' \
                         'before setting the given configuration')
 
-        parser.add_argument('qconfig', type=str, nargs='?',
+        parser.add_argument('config', type=str, nargs='?',
                 help='Optional custom queue configuration to use. If not ' \
                         'passed, uses an internal default with a single ' \
                         'queue/worker/%d slots' % CORES)
@@ -128,8 +128,8 @@ class Command(BaseCommand):
             setup_backend(RESET_CONFIGURATION)
 
         config = None
-        if arguments['qconfig']:
-            with open(arguments['qconfig'], 'rb') as f:
+        if arguments['config']:
+            with open(arguments['config'], 'rb') as f:
                 config = simplejson.load(f)
 
         setup_backend(config or DEFAULT_CONFIGURATION)
-- 
GitLab