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/16 15:26:07 UTC

[5/7] libcloud git commit: Remove trailing semicolon

Remove trailing semicolon

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/56ce2bfa
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/56ce2bfa
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/56ce2bfa

Branch: refs/heads/trunk
Commit: 56ce2bfa7c031564f06cad469219dbeb350d7be7
Parents: ee1f0fa
Author: Rémy Léone <rl...@online.net>
Authored: Fri Mar 16 10:45:16 2018 +0100
Committer: Quentin Pradet <qu...@apache.org>
Committed: Fri Mar 16 19:21:55 2018 +0400

----------------------------------------------------------------------
 libcloud/compute/drivers/hostvirtual.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/56ce2bfa/libcloud/compute/drivers/hostvirtual.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/hostvirtual.py b/libcloud/compute/drivers/hostvirtual.py
index b5d8784..277f173 100644
--- a/libcloud/compute/drivers/hostvirtual.py
+++ b/libcloud/compute/drivers/hostvirtual.py
@@ -135,7 +135,7 @@ class HostVirtualNodeDriver(NodeDriver):
         >>> from libcloud.compute.base import NodeAuthSSHKey
         >>> key = open('/home/user/.ssh/id_rsa.pub').read()
         >>> auth = NodeAuthSSHKey(pubkey=key)
-        >>> from libcloud.compute.providers import get_driver;
+        >>> from libcloud.compute.providers import get_driver
         >>> driver = get_driver('hostvirtual')
         >>> conn = driver('API_KEY')
         >>> image = conn.list_images()[1]