Skip to content

Commit

Permalink
Merge pull request #30 from dmranck/bugzilla-edit-fix
Browse files Browse the repository at this point in the history
 FIX edit function in "bugzilla.py" to correctly update the custom fields.
  • Loading branch information
dmranck committed Jun 9, 2017
2 parents 4421f5b + 9b8a6d1 commit 5d23b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ticketutil/bugzilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ def _prepare_ticket_fields(operation, fields):
if "groups" in fields:
if not isinstance(fields["groups"], list):
fields["groups"] = [fields["groups"]]
fields["groups"] = {"add": fields["groups"]}
fields["groups"] = {"add": fields["groups"]}

for key, value in fields.items():
if key == 'assignee':
Expand Down

0 comments on commit 5d23b70

Please sign in to comment.