Fix remaining direct references to the direct module
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/de1176e2 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/de1176e2 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/de1176e2 Branch: refs/heads/requests Commit: de1176e22ffff0c97f32f7f6c95310188ad66406 Parents: d52e8ef Author: anthony-shaw <[email protected]> Authored: Tue Mar 29 19:41:51 2016 +1100 Committer: anthony-shaw <[email protected]> Committed: Tue Mar 29 19:41:51 2016 +1100 ---------------------------------------------------------------------- libcloud/common/runabove.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/de1176e2/libcloud/common/runabove.py ---------------------------------------------------------------------- diff --git a/libcloud/common/runabove.py b/libcloud/common/runabove.py index 4d45241..72b93da 100644 --- a/libcloud/common/runabove.py +++ b/libcloud/common/runabove.py @@ -26,7 +26,7 @@ from libcloud.utils.py3 import httplib from libcloud.utils.connection import get_response_object from libcloud.common.types import InvalidCredsError from libcloud.common.base import ConnectionUserAndKey, JsonResponse -from libcloud.httplib_ssl import LibcloudHTTPSConnection +from libcloud.httplib_ssl import LibcloudConnection __all__ = [ 'RunAboveResponse', @@ -100,7 +100,7 @@ class RunAboveConnection(ConnectionUserAndKey): 'Content-Type': 'application/json', 'X-Ra-Application': user_id, } - httpcon = LibcloudHTTPSConnection(self.host) + httpcon = LibcloudConnection(self.host) httpcon.request(method='POST', url=action, body=data, headers=headers) response = httpcon.getresponse()
