From c1ea2989049c102fde0ea22ac06d066a34d7b0db Mon Sep 17 00:00:00 2001 From: Josh Kearney Date: Mon, 21 Jan 2013 13:44:38 -0600 Subject: Clean up test environment and remove unused imports. First round of adding more complete unit test coverage. Change-Id: Ic1979c499ca6fcb784892a95954a3527539c4e53 --- openstackclient/common/clientmanager.py | 1 - openstackclient/common/openstackkeyring.py | 1 - openstackclient/common/utils.py | 2 -- 3 files changed, 4 deletions(-) (limited to 'openstackclient/common') diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index 73c2e570..4d049213 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -20,7 +20,6 @@ import logging -from openstackclient.common import exceptions as exc from openstackclient.compute import client as compute_client from openstackclient.identity import client as identity_client from openstackclient.image import client as image_client diff --git a/openstackclient/common/openstackkeyring.py b/openstackclient/common/openstackkeyring.py index 3a5ce27f..2b03e753 100644 --- a/openstackclient/common/openstackkeyring.py +++ b/openstackclient/common/openstackkeyring.py @@ -21,7 +21,6 @@ Keyring backend for Openstack, to store encrypted password in a file. from Crypto.Cipher import AES -import crypt import keyring import os diff --git a/openstackclient/common/utils.py b/openstackclient/common/utils.py index 70555be5..c099889d 100644 --- a/openstackclient/common/utils.py +++ b/openstackclient/common/utils.py @@ -23,8 +23,6 @@ import os import sys import uuid -import prettytable - from openstackclient.common import exceptions -- cgit v1.2.1