aboutsummaryrefslogtreecommitdiff
path: root/devel/py-python-bugzilla/files/patch-bugzilla___session.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/py-python-bugzilla/files/patch-bugzilla___session.py')
-rw-r--r--devel/py-python-bugzilla/files/patch-bugzilla___session.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/py-python-bugzilla/files/patch-bugzilla___session.py b/devel/py-python-bugzilla/files/patch-bugzilla___session.py
new file mode 100644
index 000000000000..bf9849a0eef2
--- /dev/null
+++ b/devel/py-python-bugzilla/files/patch-bugzilla___session.py
@@ -0,0 +1,23 @@
+--- bugzilla/_session.py
++++ bugzilla/_session.py
+@@ -98,14 +98,14 @@ def request(self, *args, **kwargs):
+ if "timeout" not in kwargs:
+ kwargs["timeout"] = timeout
+
+- response = self._session.request(*args, **kwargs)
++ try:
++ response = self._session.request(*args, **kwargs)
+
+- if self._is_xmlrpc:
+- # Yes this still appears to matter for properly decoding unicode
+- # code points in bugzilla.redhat.com content
+- response.encoding = "UTF-8"
++ if self._is_xmlrpc:
++ # This still appears to matter for properly decoding unicode
++ # code points in bugzilla.redhat.com content
++ response.encoding = "UTF-8"
+
+- try:
+ response.raise_for_status()
+ except requests.HTTPError as e:
+ # Scrape the api key out of the returned exception string