Skip to content

Commit

Permalink
Merge pull request #19 from marcelslotema/patch-1
Browse files Browse the repository at this point in the history
Issue add_field_value should use Resource update function
  • Loading branch information
ssbarnea committed Feb 6, 2015
2 parents 6dedff2 + c897ef0 commit 92f7b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jira/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def add_field_value(self, field, value):
This should work with: labels, multiple checkbox lists, multiple select
"""
self.update({"update": {field: [{"add": value}]}})
super(Issue, self).update(fields={"update": {field: [{"add": value}]}})

def delete(self, deleteSubtasks=False):
"""
Expand Down

0 comments on commit 92f7b92

Please sign in to comment.