You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2017/04/01 00:49:02 UTC

[3/4] libcloud git commit: remove local variable assignment Closes #986

remove local variable assignment
Closes #986


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

Branch: refs/heads/trunk
Commit: 1d0a64ccde04d738c2a19305d3a26732af10d095
Parents: 5bd4e45
Author: Markos Gogoulos <mg...@mist.io>
Authored: Tue Feb 28 14:29:19 2017 +0200
Committer: Anthony Shaw <an...@apache.org>
Committed: Sat Apr 1 11:47:26 2017 +1100

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


http://git-wip-us.apache.org/repos/asf/libcloud/blob/1d0a64cc/libcloud/compute/drivers/linode.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/linode.py b/libcloud/compute/drivers/linode.py
index 24d086c..cdb3019 100644
--- a/libcloud/compute/drivers/linode.py
+++ b/libcloud/compute/drivers/linode.py
@@ -433,7 +433,7 @@ class LinodeNodeDriver(NodeDriver):
             "LinodeID": node.id,
             "Label": name
         }
-        data = self.connection.request(API_ROOT, params=params)
+        self.connection.request(API_ROOT, params=params)
         return True
 
     def list_sizes(self, location=None):