You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2014/01/03 18:23:23 UTC

[4/4] git commit: Fix lint issues.

Fix lint issues.


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/7c0720ae
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/7c0720ae
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/7c0720ae

Branch: refs/heads/trunk
Commit: 7c0720aec293aaeb3afce2b8a07ed246b6e5d05f
Parents: cbdb242
Author: Tomaz Muraus <to...@apache.org>
Authored: Fri Jan 3 18:17:41 2014 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Fri Jan 3 18:17:41 2014 +0100

----------------------------------------------------------------------
 libcloud/test/dns/test_hostvirtual.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/7c0720ae/libcloud/test/dns/test_hostvirtual.py
----------------------------------------------------------------------
diff --git a/libcloud/test/dns/test_hostvirtual.py b/libcloud/test/dns/test_hostvirtual.py
index ae304ca..f74571b 100644
--- a/libcloud/test/dns/test_hostvirtual.py
+++ b/libcloud/test/dns/test_hostvirtual.py
@@ -230,25 +230,25 @@ class HostVirtualMockHttp(MockHttp):
                 {}, httplib.responses[httplib.NOT_FOUND])
 
     def _dns_record_ZONE_DOES_NOT_EXIST(self, method,
-                                             url, body, headers):
+                                        url, body, headers):
         body = self.fixtures.load('zone_does_not_exist.json')
         return (httplib.NOT_FOUND, body,
                 {}, httplib.responses[httplib.NOT_FOUND])
 
     def _dns_record_RECORD_DOES_NOT_EXIST(self, method,
-                                               url, body, headers):
+                                          url, body, headers):
         body = self.fixtures.load('zone_does_not_exist.json')
         return (httplib.NOT_FOUND, body,
                 {}, httplib.responses[httplib.NOT_FOUND])
 
     def _dns_records_ZONE_DOES_NOT_EXIST(self, method,
-                                              url, body, headers):
+                                         url, body, headers):
         body = self.fixtures.load('zone_does_not_exist.json')
         return (httplib.NOT_FOUND, body,
                 {}, httplib.responses[httplib.NOT_FOUND])
 
     def _dns_zones_RECORD_DOES_NOT_EXIST(self, method,
-                                              url, body, headers):
+                                         url, body, headers):
         body = self.fixtures.load('zone_does_not_exist.json')
         return (httplib.NOT_FOUND, body,
                 {}, httplib.responses[httplib.NOT_FOUND])