Remove the duplicated word

Change-Id: Ie6b95d0853d48712e6699aa74da6ae948e72c5a6
This commit is contained in:
melissaml 2018-08-22 12:39:50 +08:00
parent b50673381f
commit 700f5223a9
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ class JiraNotifier(AbstractNotifier):
self._log.debug("Found an existing issue {} for this notification".format(issue))
current_state = issue.fields.status.name
if current_state.lower() in ["resolved", "closed"]:
# Open the the issue
# Open the issue
transitions = jira_obj.transitions(issue)
allowed_transistions = [(t['id'], t['name'])
for t in transitions if "reopen" in t['name'].lower()]