Revert some changes so I can apply patch cleanly.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/296e0738 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/296e0738 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/296e0738 Branch: refs/heads/trunk Commit: 296e0738694b2a70780b90d4827f229cf5b8fe1c Parents: 845cb9a Author: Tomaz Muraus <[email protected]> Authored: Thu Oct 17 20:30:22 2013 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Thu Oct 17 20:31:41 2013 +0200 ---------------------------------------------------------------------- libcloud/compute/drivers/elastichosts.py | 11 ----------- 1 file changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/296e0738/libcloud/compute/drivers/elastichosts.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/elastichosts.py b/libcloud/compute/drivers/elastichosts.py index fcc1215..ea801ee 100644 --- a/libcloud/compute/drivers/elastichosts.py +++ b/libcloud/compute/drivers/elastichosts.py @@ -89,12 +89,6 @@ STANDARD_DRIVES = { 'size_gunzipped': '1GB', 'supports_deployment': True, }, - '62f512cd-82c7-498e-88d8-a09ac2ef20e7': { - 'uuid': '62f512cd-82c7-498e-88d8-a09ac2ef20e7', - 'description': 'Ubuntu Linux 12.04', - 'size_gunzipped': '1GB', - 'supports_deployment': True, - }, 'b9d0eb72-d273-43f1-98e3-0d4b87d372c0': { 'uuid': 'b9d0eb72-d273-43f1-98e3-0d4b87d372c0', 'description': 'Windows Web Server 2008', @@ -156,7 +150,6 @@ class ElasticHostsUK1NodeDriver(ElasticHostsBaseNodeDriver): ElasticHosts node driver for the London Peer 1 end-point """ connectionCls = ElasticHostsUK1Connection - name = 'ElasticHosts (uk-1)' class ElasticHostsUK2Connection(ElasticStackBaseConnection): @@ -172,7 +165,6 @@ class ElasticHostsUK2NodeDriver(ElasticHostsBaseNodeDriver): ElasticHosts node driver for the London Bluesquare end-point """ connectionCls = ElasticHostsUK2Connection - name = 'ElasticHosts (uk-2)' class ElasticHostsUS1Connection(ElasticStackBaseConnection): @@ -188,7 +180,6 @@ class ElasticHostsUS1NodeDriver(ElasticHostsBaseNodeDriver): ElasticHosts node driver for the San Antonio Peer 1 end-point """ connectionCls = ElasticHostsUS1Connection - name = 'ElasticHosts (us-1)' class ElasticHostsUS2Connection(ElasticStackBaseConnection): @@ -204,7 +195,6 @@ class ElasticHostsUS2NodeDriver(ElasticHostsBaseNodeDriver): ElasticHosts node driver for the Los Angeles Peer 1 end-point """ connectionCls = ElasticHostsUS2Connection - name = 'ElasticHosts (us-2)' class ElasticHostsCA1Connection(ElasticStackBaseConnection): @@ -220,4 +210,3 @@ class ElasticHostsCA1NodeDriver(ElasticHostsBaseNodeDriver): ElasticHosts node driver for the Toronto Peer 1 end-point """ connectionCls = ElasticHostsCA1Connection - name = 'ElasticHosts (ca-1)'
