File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ):
Original file line number Diff line number Diff line change 33from 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
88setup (
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' ,
You can’t perform that action at this time.
0 commit comments