From 2c2d92de6e3b95f73b2f38d1eaa20da8115bb23e Mon Sep 17 00:00:00 2001 From: Ruslan Kamaldinov Date: Sat, 29 Nov 2014 06:40:31 +0300 Subject: [PATCH] Remove unused imports from genconfig There were two unused imports in opts.py: * eventlet_backdoor - not used anywhere * lockutils - used only by unit tests We don't need these options in generated sample config. Change-Id: I3b7d4f326d42de94dec3fd53e18c4d21c0cb3708 --- murano/opts.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/murano/opts.py b/murano/opts.py index c8749bd8..aa153ca2 100644 --- a/murano/opts.py +++ b/murano/opts.py @@ -19,8 +19,6 @@ import itertools import murano.common.config import murano.common.wsgi -import murano.openstack.common.eventlet_backdoor -import murano.openstack.common.lockutils import murano.openstack.common.log import murano.openstack.common.policy import murano.openstack.common.sslutils @@ -49,8 +47,6 @@ _opt_lists = [ murano.common.config.file_server, murano.common.config.murano_metadata_url, murano.common.wsgi.socket_opts, - murano.openstack.common.eventlet_backdoor.eventlet_backdoor_opts, - murano.openstack.common.lockutils.util_opts, murano.openstack.common.log.common_cli_opts, murano.openstack.common.log.generic_log_opts, murano.openstack.common.log.log_opts,