Skip to content

Commit b733631

Browse files
authored
Merge pull request #114 from lhh/0_8_15
Bugfix / prep 0.8.15
2 parents d372017 + e5ee8d2 commit b733631

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.1
22
Name: jirate
3-
Version: 0.8.14
3+
Version: 0.8.15
44
Summary: Python CLI for JIRA and Trello
55
Author: Lon Hohberger
66
Author-email: lon@metamorphism.com

jirate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/python3
22

3-
__version__ = '0.8.14'
3+
__version__ = '0.8.15'

jirate/jira_input.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def transmogrify_value(value, field_info):
163163
if schema['type'] == 'array':
164164
# Patch for Jira sprint - TODO: make more generic
165165
if 'custom' in schema and schema['custom'] == "com.pyxis.greenhopper.jira:gh-sprint":
166-
return in_number(value)
166+
return in_number(value[0])
167167
vals = allowed_value_validate(field_info['name'], parse_params(value), av)
168168
try:
169169
ret = _input_array_renderers[schema['items']](vals)

0 commit comments

Comments
 (0)