Skip to content

Commit 3884636

Browse files
committed
PYAPI-42 Jira: Add statuses, issues, projects, transitions
1 parent 8c56242 commit 3884636

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

atlassian/jira.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def get_status_id_from_name(self, status_name):
131131

132132
def get_transition_id_to_status_name(self, issuekey, status_name):
133133
for transition in self.get_issue_transitions(issuekey):
134-
if status_name == transition['to']:
134+
if status_name.lower() == transition['to'].lower():
135135
return int(transition['id'])
136136

137137
def issue_transition(self, issuekey, status):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
from setuptools import setup
44

55

6-
assert sys.version_info >= (3, 0), 'Python 3.0+ required.'
6+
assert sys.version_info >= (3, 2), 'Python 3.2+ required.'
77

88
setup(
99
name='atlassian-python-api',
1010
description='Python Atlassian REST API Wrapper',
1111
long_description='Python Atlassian REST API Wrapper',
1212
license='Apache License 2.0',
13-
version='0.13.1',
13+
version='0.13.2',
1414
download_url='https://github.com/MattAgile/atlassian-python-api',
1515

1616
author='Matt Harasymczuk',

0 commit comments

Comments
 (0)