commit | aea563048732090874d9e0b4cdb9141f0f7a75a4 | [log] [tgz] |
---|---|---|
author | Attila Fazekas <afazekas@redhat.com> | Tue Mar 26 23:06:44 2013 +0100 |
committer | Attila Fazekas <afazekas@redhat.com> | Tue Mar 26 23:06:44 2013 +0100 |
tree | cd8ef673902a386ba6a05d3791790471bbbfedb7 | |
parent | 990a1894db80a937d62e5e0bb93bcdc3295b2456 [diff] |
Add missing exceptions import security_groups_client.py and security_groups_client.py are using the "exceptions" module, but it was not imported. Change-Id: Ib39e28ad7a4a49833ac9a4090da5b783e3075a03
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