15
0

Accepting request 648722 from home:mimi_vx:branches:devel:languages:python

- add disable-gssapi.patch - workaround for boo#1115769

OBS-URL: https://build.opensuse.org/request/show/648722
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-paramiko?expand=0&rev=75
This commit is contained in:
Tomáš Chvátal
2018-11-13 11:50:48 +00:00
committed by Git OBS Bridge
parent c05cb21067
commit 11a96a68ea
3 changed files with 20 additions and 0 deletions

13
disable-gssapi.patch Normal file
View File

@@ -0,0 +1,13 @@
Index: paramiko-2.4.2/paramiko/ssh_gss.py
===================================================================
--- paramiko-2.4.2.orig/paramiko/ssh_gss.py
+++ paramiko-2.4.2/paramiko/ssh_gss.py
@@ -53,7 +53,7 @@ try:
import gssapi
GSS_EXCEPTIONS = (gssapi.GSSException,)
-except (ImportError, OSError):
+except (ImportError, OSError, AttributeError):
try:
import pywintypes
import sspicon