diff options
| author | Riccardo Pittau <elfosardo@gmail.com> | 2019-12-18 10:21:29 +0100 |
|---|---|---|
| committer | Riccardo Pittau <elfosardo@gmail.com> | 2019-12-18 15:18:24 +0100 |
| commit | a572ae21e72c8197fb25f05d39a5caef99d7e575 (patch) | |
| tree | 61dc0be4e3bfdaa13562c4716fc8577eed6388de /ironicclient/tests/unit/test_exc.py | |
| parent | 1cd9a65c072701ddb7d43100191351e15c17f155 (diff) | |
| download | python-ironicclient-a572ae21e72c8197fb25f05d39a5caef99d7e575.tar.gz | |
Stop using six library
Since we've dropped support for Python 2.7, it's time to look at
the bright future that Python 3.x will bring and stop forcing
compatibility with older versions.
This patch removes the six library from requirements, not
looking back.
Change-Id: I4b60638bb0268e5d1cf54fdf7d61964082536f4f
Diffstat (limited to 'ironicclient/tests/unit/test_exc.py')
| -rw-r--r-- | ironicclient/tests/unit/test_exc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ironicclient/tests/unit/test_exc.py b/ironicclient/tests/unit/test_exc.py index d7c8382..ea57098 100644 --- a/ironicclient/tests/unit/test_exc.py +++ b/ironicclient/tests/unit/test_exc.py @@ -13,8 +13,9 @@ # License for the specific language governing permissions and limitations # under the License. +from http import client as http_client + import mock -from six.moves import http_client from ironicclient.common.apiclient import exceptions from ironicclient import exc |
