diff options
author | Eric Guo <eric.guo@easystack.cn> | 2014-01-17 20:13:24 +0800 |
---|---|---|
committer | Eric Guo <eric.guo@easystack.cn> | 2014-01-17 23:21:38 +0800 |
commit | 252b6e423d5303402a84f69b7e2e1e629dd171df (patch) | |
tree | 0ac0754025eb0bb8726356aa88d80be11abac200 /keystoneclient/client.py | |
parent | 8a118718c70c9f32ad155d9f5a0a86f233c7b063 (diff) | |
download | python-keystoneclient-252b6e423d5303402a84f69b7e2e1e629dd171df.tar.gz |
Adjust import items according to hacking import rule
This patch adjust import items and add missing blank lines acording
to http://docs.openstack.org/developer/hacking/#imports
{{stdlib imports in human alphabetical order}}
\n
{{third-party lib imports in human alphabetical order}}
\n
{{project imports in human alphabetical order}}
\n
\n
{{begin your code}}
hacking project also enforce some checks for import group.
Let make the change in keytoneclient
Change-Id: Ic83bd5ee426905588f4a2d555851a9a01fc69f02
Diffstat (limited to 'keystoneclient/client.py')
-rw-r--r-- | keystoneclient/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keystoneclient/client.py b/keystoneclient/client.py index 72620eb..832e3fa 100644 --- a/keystoneclient/client.py +++ b/keystoneclient/client.py @@ -15,6 +15,7 @@ from keystoneclient import discover from keystoneclient import httpclient + # Using client.HTTPClient is deprecated. Use httpclient.HTTPClient instead. HTTPClient = httpclient.HTTPClient |