You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by qu...@apache.org on 2017/09/27 03:12:51 UTC

[08/14] libcloud git commit: inherit exception from LibcloudError

inherit exception from LibcloudError

Signed-off-by: Quentin Pradet <qu...@apache.org>


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

Branch: refs/heads/trunk
Commit: 5326c9aa938c35fd773d27d2d53c9e5e21d3658f
Parents: 82b5c3c
Author: Mika Lackman <mi...@upcloud.com>
Authored: Sun Sep 24 19:38:38 2017 +0300
Committer: Quentin Pradet <qu...@apache.org>
Committed: Wed Sep 27 07:04:33 2017 +0400

----------------------------------------------------------------------
 libcloud/common/upcloud.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/5326c9aa/libcloud/common/upcloud.py
----------------------------------------------------------------------
diff --git a/libcloud/common/upcloud.py b/libcloud/common/upcloud.py
index a63be08..02413fc 100644
--- a/libcloud/common/upcloud.py
+++ b/libcloud/common/upcloud.py
@@ -16,9 +16,10 @@ import json
 import time
 
 from libcloud.common.exceptions import BaseHTTPError
+from libcloud.common.types import LibcloudError
 
 
-class UpcloudTimeoutException(Exception):
+class UpcloudTimeoutException(LibcloudError):
     pass