Consistent import order.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/ca470b63 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/ca470b63 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/ca470b63 Branch: refs/heads/trunk Commit: ca470b63980105e29f2cdfea7b4ea9e124ffec12 Parents: 44c5177 Author: Tomaz Muraus <[email protected]> Authored: Sun Apr 5 14:46:32 2015 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Sun Apr 5 14:46:32 2015 +0200 ---------------------------------------------------------------------- libcloud/compute/drivers/azure.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/ca470b63/libcloud/compute/drivers/azure.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/azure.py b/libcloud/compute/drivers/azure.py index c80f2b0..e29be39 100644 --- a/libcloud/compute/drivers/azure.py +++ b/libcloud/compute/drivers/azure.py @@ -36,9 +36,8 @@ try: except ImportError: from xml.etree import ElementTree as ET -from libcloud.utils.py3 import urlquote as url_quote -from libcloud.common.azure import (AzureServiceManagementConnection, - AzureRedirectException) +from libcloud.common.azure import AzureServiceManagementConnection +from libcloud.common.azure import AzureRedirectException from libcloud.compute.providers import Provider from libcloud.compute.base import Node, NodeDriver, NodeLocation, NodeSize from libcloud.compute.base import NodeImage, StorageVolume @@ -47,6 +46,7 @@ from libcloud.common.types import LibcloudError from libcloud.utils.py3 import httplib from libcloud.utils.py3 import urlparse from libcloud.utils.py3 import ensure_string +from libcloud.utils.py3 import urlquote as url_quote HTTPSConnection = httplib.HTTPSConnection
