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 2019/12/19 10:20:11 UTC

[libcloud] branch trunk updated: Fix lint.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 13b1e23  Fix lint.
13b1e23 is described below

commit 13b1e23df182a6d0f4ba23deb552c03ca934a67e
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Thu Dec 19 11:20:00 2019 +0100

    Fix lint.
---
 libcloud/loadbalancer/drivers/nttcis.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libcloud/loadbalancer/drivers/nttcis.py b/libcloud/loadbalancer/drivers/nttcis.py
index b0a0bf9..38a28f6 100644
--- a/libcloud/loadbalancer/drivers/nttcis.py
+++ b/libcloud/loadbalancer/drivers/nttcis.py
@@ -779,8 +779,8 @@ class NttCisLBDriver(Driver):
         try:
             import OpenSSL
         except ImportError:
-            raise ImportError('Missing "OpenSSL" dependency. You can install it '
-                            'using pip - pip install pyopenssl')
+            raise ImportError('Missing "OpenSSL" dependency. You can install '
+                              'it using pip - pip install pyopenssl')
 
         with open(crt_file) as fp:
             c = OpenSSL.crypto.load_certificate(
@@ -848,8 +848,8 @@ class NttCisLBDriver(Driver):
             import OpenSSL
             from OpenSSL import crypto
         except ImportError:
-            raise ImportError('Missing "OpenSSL" dependency. You can install it '
-                            'using pip - pip install pyopenssl')
+            raise ImportError('Missing "OpenSSL" dependency. You can install '
+                              'it using pip - pip install pyopenssl')
 
         c = crypto.load_certificate(
             crypto.FILETYPE_PEM, open(chain_crt_file).read())