Remove blank lines, update changes.
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/5e77186b Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/5e77186b Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/5e77186b Branch: refs/heads/trunk Commit: 5e77186bb52894899f68d8cb1b03fc2dd083a837 Parents: 7fc13a4 Author: Tomaz Muraus <[email protected]> Authored: Wed Oct 23 13:00:32 2013 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Wed Oct 23 13:00:32 2013 +0200 ---------------------------------------------------------------------- CHANGES | 7 +++++++ libcloud/test/compute/test_ec2.py | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/5e77186b/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index e17cf77..3ecd2f1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,12 @@ -*- coding: utf-8 -*- +Changes with Apache Libcloud in development + + *) Compute + + - Fix ex_delete_keypair method in the EC2 driver. (LIBCLOUD-415) + [Oleg Suharev] + Changes with Apache Libcloud 0.14.0-beta2 *) Compute http://git-wip-us.apache.org/repos/asf/libcloud/blob/5e77186b/libcloud/test/compute/test_ec2.py ---------------------------------------------------------------------- diff --git a/libcloud/test/compute/test_ec2.py b/libcloud/test/compute/test_ec2.py index 785af5c..687d62e 100644 --- a/libcloud/test/compute/test_ec2.py +++ b/libcloud/test/compute/test_ec2.py @@ -380,7 +380,6 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin): self.assertEqual(keypair2['keyFingerprint'], null_fingerprint) def ex_delete_keypair(self): - resp = self.driver.ex_delete_keypair('testkey') self.assertTrue(resp) @@ -835,7 +834,6 @@ class EC2MockHttp(MockHttpTestCase): return (httplib.OK, body, {}, httplib.responses[httplib.OK]) def _DeleteKeypair(self, method, url, body, headers): - url = url[2:] params = dict(parse_qsl(url)) self.assertEqual(params['KeyPair'], 'testkey')
