You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by qu...@apache.org on 2018/03/02 05:42:37 UTC

[10/13] libcloud git commit: fix line too long linting errors in OS driver

fix line too long linting errors in OS driver

fixes:
libcloud/compute/drivers/openstack.py:2488:80: E501 line too long (80 > 79 characters)
libcloud/compute/drivers/openstack.py:2489:80: E501 line too long (84 > 79 characters)
libcloud/compute/drivers/openstack.py:2492:80: E501 line too long (82 > 79 characters)
libcloud/compute/drivers/openstack.py:2494:80: E501 line too long (88 > 79 characters)

Signed-off-by: Quentin Pradet <qu...@apache.org>


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

Branch: refs/heads/trunk
Commit: 1da255007897ad2099f8fa618ffb3abe938ba109
Parents: 8f12b92
Author: Rick van de Loo <ri...@gmail.com>
Authored: Sat Feb 10 18:15:11 2018 +0100
Committer: Quentin Pradet <qu...@apache.org>
Committed: Fri Mar 2 09:34:26 2018 +0400

----------------------------------------------------------------------
 libcloud/compute/drivers/openstack.py | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/1da25500/libcloud/compute/drivers/openstack.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py
index 3dfa47a..28b708e 100644
--- a/libcloud/compute/drivers/openstack.py
+++ b/libcloud/compute/drivers/openstack.py
@@ -2486,13 +2486,17 @@ class OpenStack_2_NodeDriver(OpenStack_1_1_NodeDriver):
     # compute API. This deprecated proxied API does not offer all
     # functionality that the Glance Image service API offers.
     # See https://developer.openstack.org/api-ref/compute/
-    # > These APIs are proxy calls to the Image service. Nova has deprecated all
-    # > the proxy APIs and users should use the native APIs instead. These will fail
-    # > with a 404 starting from microversion 2.36. See: Relevant Image APIs.
-    # For example, managing image visibility and sharing machine images across
-    # tenants can not be done using the proxied image API in the compute endpoint,
-    # but it can be done with the Glance Image API.
-    # See https://developer.openstack.org/api-ref/image/v2/index.html#list-image-members
+    #
+    # > These APIs are proxy calls to the Image service. Nova has deprecated
+    # > all the proxy APIs and users should use the native APIs instead. These
+    # > will fail with a 404 starting from microversion 2.36. See: Relevant
+    # > Image APIs.
+    #
+    # For example, managing image visibility and sharing machine
+    # images across tenants can not be done using the proxied image API in the
+    # compute endpoint, but it can be done with the Glance Image API.
+    # See https://developer.openstack.org/api-ref/
+    # image/v2/index.html#list-image-members
     image_connectionCls = OpenStack_2_ImageConnection
     image_connection = None
     type = Provider.OPENSTACK