Repository: libcloud Updated Branches: refs/heads/trunk ee4f7ef17 -> 29e33873d
Remove print stament which some how ended up there. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/29e33873 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/29e33873 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/29e33873 Branch: refs/heads/trunk Commit: 29e33873d9e072f75f407cbf32f0f09c5cf3b875 Parents: ee4f7ef Author: Tomaz Muraus <[email protected]> Authored: Sun Nov 22 23:30:13 2015 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Sun Nov 22 23:36:35 2015 +0100 ---------------------------------------------------------------------- libcloud/compute/drivers/ec2.py | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/29e33873/libcloud/compute/drivers/ec2.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py index 3ddecb9..1e25b71 100644 --- a/libcloud/compute/drivers/ec2.py +++ b/libcloud/compute/drivers/ec2.py @@ -2318,7 +2318,6 @@ class BaseEC2NodeDriver(NodeDriver): attributes = copy.deepcopy(attributes) price = self._get_size_price(size_id=instance_type) attributes.update({'price': price}) - print attributes sizes.append(NodeSize(driver=self, **attributes)) return sizes
