commit | 86d23ecbd316cd087b753f4368c2bb79793e6615 | [log] [tgz] |
---|---|---|
author | Jenkins <jenkins@review.openstack.org> | Wed Mar 27 12:35:35 2013 +0000 |
committer | Gerrit Code Review <review@openstack.org> | Wed Mar 27 12:35:35 2013 +0000 |
tree | 87b6599be331370ac9b393be10d7501a5fb3eac8 | |
parent | 76e3d65b32d86cd5e2a3be70469c45fc1f342a74 [diff] | |
parent | aea563048732090874d9e0b4cdb9141f0f7a75a4 [diff] |
Merge "Add missing exceptions import"
diff --git a/tempest/services/compute/json/security_groups_client.py b/tempest/services/compute/json/security_groups_client.py index 7f430d8..1dc11c4 100644 --- a/tempest/services/compute/json/security_groups_client.py +++ b/tempest/services/compute/json/security_groups_client.py
@@ -19,6 +19,7 @@ import urllib from tempest.common.rest_client import RestClient +from tempest import exceptions class SecurityGroupsClientJSON(RestClient):
diff --git a/tempest/services/compute/xml/security_groups_client.py b/tempest/services/compute/xml/security_groups_client.py index 7db60a1..10f1a42 100644 --- a/tempest/services/compute/xml/security_groups_client.py +++ b/tempest/services/compute/xml/security_groups_client.py
@@ -19,6 +19,7 @@ import urllib from tempest.common.rest_client import RestClientXML +from tempest import exceptions from tempest.services.compute.xml.common import Document from tempest.services.compute.xml.common import Element from tempest.services.compute.xml.common import Text