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/07/15 21:30:12 UTC

[libcloud] 18/19: Fix name attribute.

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

commit 63cd1cbc05911937c82a037e9f55023bb2f94ffc
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Jul 15 23:27:33 2019 +0200

    Fix name attribute.
---
 libcloud/compute/drivers/gridscale.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libcloud/compute/drivers/gridscale.py b/libcloud/compute/drivers/gridscale.py
index 9d19988..611d7e7 100644
--- a/libcloud/compute/drivers/gridscale.py
+++ b/libcloud/compute/drivers/gridscale.py
@@ -89,7 +89,8 @@ class GridscaleNodeDriver(GridscaleBaseDriver):
     """
     connectionCls = GridscaleConnection
     type = Provider.GRIDSCALE
-    name = 'gridscale'
+    name = 'Gridscale'
+    api_name = 'gridscale'
     website = 'https://gridscale.io'
     features = {'create_node': ['ssh_key']}