summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in6
-rw-r--r--os_client_config/config.py4
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini2
4 files changed, 3 insertions, 10 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index 90f8a7a..0000000
--- a/MANIFEST.in
+++ /dev/null
@@ -1,6 +0,0 @@
-include AUTHORS
-include ChangeLog
-exclude .gitignore
-exclude .gitreview
-
-global-exclude *.pyc \ No newline at end of file
diff --git a/os_client_config/config.py b/os_client_config/config.py
index 2dd49c3..f1df797 100644
--- a/os_client_config/config.py
+++ b/os_client_config/config.py
@@ -831,7 +831,7 @@ class OpenStackConfig(object):
config['auth']['token'] = 'notused'
return loading.get_plugin_loader(config['auth_type'])
- def _validate_auth_ksc(self, config):
+ def _validate_auth_ksc(self, config, cloud):
try:
import keystoneclient.auth as ksc_auth
except ImportError:
@@ -1005,7 +1005,7 @@ class OpenStackConfig(object):
self.log.debug("Deferring keystone exception: {e}".format(e=e))
auth_plugin = None
try:
- config = self._validate_auth_ksc(config)
+ config = self._validate_auth_ksc(config, cloud)
except Exception:
raise e
else:
diff --git a/setup.cfg b/setup.cfg
index 89df35c..07ac625 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -16,7 +16,6 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
[files]
diff --git a/tox.ini b/tox.ini
index 3df64e2..d2aac05 100644
--- a/tox.ini
+++ b/tox.ini
@@ -34,5 +34,5 @@ commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasen
[flake8]
show-source = True
builtins = _
-exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,releasenotes/source/conf.py
+exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,releasenotes/source/conf.py