Repository: libcloud
Updated Branches:
refs/heads/trunk 1e359b36d -> c377c40e0
Fix missing return statement
This line was lost during a recent merge prior to v2.0.0.
Closes #1062
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/ee795bff
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/ee795bff
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/ee795bff
Branch: refs/heads/trunk
Commit: ee795bff201648453bf53de2c72caf8b9a2a50db
Parents: 1e359b3
Author: Alex Misstear <amisstea@redhat.com>
Authored: Wed May 24 16:47:09 2017 -0400
Committer: Anthony Shaw <anthonyshaw@apache.org>
Committed: Sun Jun 18 12:27:00 2017 +1000
----------------------------------------------------------------------
libcloud/compute/drivers/ec2.py | 2 ++
1 file changed, 2 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/libcloud/blob/ee795bff/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index a551a70..589c03a 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -7295,6 +7295,8 @@ class BaseEC2NodeDriver(NodeDriver):
idx += 1 # We want 1-based indexes
params['BillingProduct.%d' % (idx)] = str(v)
+ return params
+
def _get_disk_container_params(self, disk_container):
"""
Return a list of dictionaries with query parameters for
|