From 46f74e8e4e6cd093a3be4309802f5a72ed305080 Mon Sep 17 00:00:00 2001 From: Gauvain Pocentek Date: Sun, 3 Jan 2016 09:24:20 +0100 Subject: Implement managers to get access to resources This changes the 'default' API, using managers is the recommended way to get/list/create objects. Additional operations will be implemented in followup patchs. Old methods are deprecated and will disappear in a while. --- gitlab/exceptions.py | 1 + 1 file changed, 1 insertion(+) (limited to 'gitlab/exceptions.py') diff --git a/gitlab/exceptions.py b/gitlab/exceptions.py index c08166e..c6df71c 100644 --- a/gitlab/exceptions.py +++ b/gitlab/exceptions.py @@ -15,6 +15,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see . + class GitlabError(Exception): def __init__(self, error_message="", response_code=None, response_body=None): -- cgit v1.2.1