Skip to content

Commit

Permalink
fix line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Nov 5, 2016
1 parent c17ecc0 commit 9f7f45f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gitlab/objects.py
Expand Up @@ -1257,7 +1257,8 @@ def enable(self):

def disable(self):
"""Disable a deploy key for a project."""
url = '/projects/%s/deploy_keys/%s/disable' % (self.project_id, self.id)
url = '/projects/%s/deploy_keys/%s/disable' % (self.project_id,
self.id)
r = self.gitlab._raw_delete(url)
raise_error_from_response(r, GitlabProjectDeployKeyError, 200)

Expand Down

0 comments on commit 9f7f45f

Please sign in to comment.