From 1143b7c818b26e61f0078ec0c000c4fbdb6d6e56 Mon Sep 17 00:00:00 2001 From: Mark Rossmair Date: Mon, 31 Jul 2017 11:59:02 -0400 Subject: [PATCH 1/2] Update examples.rst Small type when setting fields in the transition section --- docs/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples.rst b/docs/examples.rst index e9f101ce8..b687c1876 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -263,7 +263,7 @@ Then perform a transition on an issue:: jira.transition_issue(issue, '5', assignee={'name': 'pm_user'}, resolution={'id': '3'}) # The above line is equivalent to: - jira.transition_issue(issue, '5', fields: {'assignee':{'name': 'pm_user'}, 'resolution':{'id': '3'}}) + jira.transition_issue(issue, '5', fields={'assignee':{'name': 'pm_user'}, 'resolution':{'id': '3'}}) Projects -------- From 7514529d2855280b187ec2588a9c1c7944bb4170 Mon Sep 17 00:00:00 2001 From: PaNick Date: Wed, 13 Feb 2019 00:11:39 +0300 Subject: [PATCH 2/2] added unicode literals to exceptions --- jira/exceptions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jira/exceptions.py b/jira/exceptions.py index cbd7217e4..3b211c98e 100644 --- a/jira/exceptions.py +++ b/jira/exceptions.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals import os import tempfile