Repository: libcloud Updated Branches: refs/heads/trunk ab6a7508e -> 90b263cdd
Removed whitespace after '{' Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/7bb40990 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/7bb40990 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/7bb40990 Branch: refs/heads/trunk Commit: 7bb40990bb427a7e59b7336a5949a83369462ec1 Parents: 402b977 Author: Juan Font Alonso <juanfontalo...@gmail.com> Authored: Wed Dec 16 17:37:24 2015 +0100 Committer: anthony-shaw <anthony.p.s...@gmail.com> Committed: Mon Feb 15 09:44:49 2016 +1100 ---------------------------------------------------------------------- libcloud/compute/drivers/vcloud.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/7bb40990/libcloud/compute/drivers/vcloud.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/vcloud.py b/libcloud/compute/drivers/vcloud.py index bc649d4..3f7fc1a 100644 --- a/libcloud/compute/drivers/vcloud.py +++ b/libcloud/compute/drivers/vcloud.py @@ -2133,11 +2133,11 @@ class VCloud_5_5_NodeDriver(VCloud_5_1_NodeDriver): """ snapshot_xml = ET.Element( "CreateSnapshotParams", - { 'memory': 'true', - 'name': 'name', - 'quiesce': 'true', - 'xmlns': "http://www.vmware.com/vcloud/v1.5", - 'xmlns:xsi': "http://www.w3.org/2001/XMLSchema-instance"} + {'memory': 'true', + 'name': 'name', + 'quiesce': 'true', + 'xmlns': "http://www.vmware.com/vcloud/v1.5", + 'xmlns:xsi': "http://www.w3.org/2001/XMLSchema-instance"} ) ET.SubElement(snapshot_xml, 'Description').text = 'Description' content_type = 'application/vnd.vmware.vcloud.createSnapshotParams+xml'