Projet

Général

Profil

0001-python3-use-six.moves._thread-instead-of-thread-3116.patch

Paul Marillonnet, 06 mars 2019 20:00

Télécharger (663 octets)

Voir les différences:

Subject: [PATCH] python3: use six.moves._thread instead of thread (#31164)

 src/authentic2/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2/views.py
1 1
import logging
2 2
from authentic2.compat_lasso import lasso
3
import thread
3
from six.moves import _thread as thread
4 4
import requests
5 5
import urllib
6 6
import re
7
-