diff options
Diffstat (limited to 'gitlab.py')
-rw-r--r-- | gitlab.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -227,6 +227,8 @@ class Gitlab(object): return True elif r.status_code == 401: raise GitlabAuthenticationError(r.json()['message']) + else: + raise GitlabDeleteError(r.json()['message']) return False def create(self, obj): |