From 3a7e9fb43515f8c5b2410d183af5d704447fbfed Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Thu, 4 Dec 2014 18:09:15 -0700 Subject: [PATCH] Remove stray print which caused magnum-db-manage to fail A stray debug print was causing magnum-db-manage to fail because the configuration file was read after the print. The print printed out configuration information. Change-Id: I077aaa80fad40a10148bcab93c5278e5871e899d --- magnum/cmd/db_manage.py | 1 - 1 file changed, 1 deletion(-) diff --git a/magnum/cmd/db_manage.py b/magnum/cmd/db_manage.py index 68ce3561de..66812ff11f 100644 --- a/magnum/cmd/db_manage.py +++ b/magnum/cmd/db_manage.py @@ -95,6 +95,5 @@ def main(): # set_defaults() is called to register the db options. options.set_defaults(CONF) - print ('manager is %s' % get_manager()) CONF(project='magnum') CONF.command.func(get_manager())