summaryrefslogtreecommitdiff
path: root/barbicanclient
diff options
context:
space:
mode:
authorJeremy Liu <liujiong@gohighsec.com>2016-11-27 22:35:42 +0800
committerJeremy Liu <liujiong@gohighsec.com>2017-01-26 21:14:13 +0800
commitd77b2be9c7f44d12f16ff21d0b9d556fd61fa93c (patch)
tree996537a646576b86df8a4b38702a4deb6d19e0a0 /barbicanclient
parent585e9c92922018345fa10a7ef93f9c09ae0413ec (diff)
downloadpython-barbicanclient-d77b2be9c7f44d12f16ff21d0b9d556fd61fa93c.tar.gz
Remove unused barbicanclient/common directory
Currently, this directory contains config.py to parse configurations. Barbicanclient does not have a configuration file, so no need to parse configurations. This directory isn't used, so remove it. Change-Id: Id641094b8802a24d0f331469245dd9717b1f089c
Diffstat (limited to 'barbicanclient')
-rw-r--r--barbicanclient/common/__init__.py0
-rw-r--r--barbicanclient/common/config.py32
2 files changed, 0 insertions, 32 deletions
diff --git a/barbicanclient/common/__init__.py b/barbicanclient/common/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/barbicanclient/common/__init__.py
+++ /dev/null
diff --git a/barbicanclient/common/config.py b/barbicanclient/common/config.py
deleted file mode 100644
index 12f9c13..0000000
--- a/barbicanclient/common/config.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright (c) 2013 Rackspace, Inc.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
-# implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-"""
-Configuration setup for Barbican Client.
-"""
-
-from barbicanclient.version import __version__
-from oslo_config import cfg
-
-CONF = cfg.CONF
-
-
-def parse_args(args=None, usage=None, default_config_files=None):
- CONF(args=args,
- project='barbicanclient',
- prog='barbicanclient',
- version=__version__,
- usage=usage,
- default_config_files=default_config_files)