Skip to content
This repository has been archived by the owner on Feb 9, 2019. It is now read-only.

Commit

Permalink
Merge branch 'feature/itacloud-6736' into 'develop'
Browse files Browse the repository at this point in the history
Fix issue deletion

- ITACLOUD-6736

See merge request !21
  • Loading branch information
livenson committed May 3, 2016
2 parents e524d7e + 04b3bd7 commit 54c58e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nodeconductor_jira/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def update_issue(self, issue):

@reraise_exceptions
def delete_issue(self, issue):
self.manager.delete_issue(issue.backend_id)
backend_issue = self.manager.issue(issue.backend_id)
backend_issue.delete()

@reraise_exceptions
def create_comment(self, comment):
Expand Down

0 comments on commit 54c58e6

Please sign in to comment.