fix ending :
Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/3b1c9f4f Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/3b1c9f4f Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/3b1c9f4f Branch: refs/heads/trunk Commit: 3b1c9f4f1fe5ce06301d54f0647895645d12da8a Parents: 053d574 Author: Mario Loria <ma...@arroyonetworks.com> Authored: Fri Sep 30 11:17:05 2016 -0400 Committer: Mario Loria <ma...@arroyonetworks.com> Committed: Fri Sep 30 11:17:05 2016 -0400 ---------------------------------------------------------------------- libcloud/common/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/3b1c9f4f/libcloud/common/base.py ---------------------------------------------------------------------- diff --git a/libcloud/common/base.py b/libcloud/common/base.py index 4716ef5..3b03fa3 100644 --- a/libcloud/common/base.py +++ b/libcloud/common/base.py @@ -867,7 +867,7 @@ class Connection(object): return response def morph_action_hook(self, action): - if not action.startswith("/") + if not action.startswith("/"): action = "/" + action return self.request_path + action