diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-10-08 09:55:39 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2017-10-08 09:55:39 +0200 |
commit | 316754dd8290ee80c8c197eb1eca559fce97792e (patch) | |
tree | d2eed34579dc8d088b3f724fb67aded6e28a96b7 /gitlab/mixins.py | |
parent | f3f300c493c3a944e57b212088f5719474b98081 (diff) | |
download | gitlab-316754dd8290ee80c8c197eb1eca559fce97792e.tar.gz |
Drop leftover pdb call
Diffstat (limited to 'gitlab/mixins.py')
-rw-r--r-- | gitlab/mixins.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gitlab/mixins.py b/gitlab/mixins.py index 2b58d49..2acc54b 100644 --- a/gitlab/mixins.py +++ b/gitlab/mixins.py @@ -235,7 +235,6 @@ class DeleteMixin(object): GitlabAuthenticationError: If authentication is not correct GitlabDeleteError: If the server cannot perform the request """ - import pdb; pdb.set_trace() if not isinstance(id, int): id = id.replace('/', '%2F') path = '%s/%s' % (self.path, id) |