Projet

Général

Profil

0001-py3-compliance-of-authentic-agent-provisioning-40407.patch

Paul Marillonnet, 04 mars 2020 14:44

Télécharger (978 octets)

Voir les différences:

Subject: [PATCH] py3-compliance of authentic agent provisioning (#40407)

 hobo/agent/authentic2/provisionning.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
hobo/agent/authentic2/provisionning.py
1 1
import json
2
from urlparse import urljoin
2
from django.utils.six.moves.urllib.parse import urljoin
3 3
import threading
4 4
import copy
5 5
import logging
......
25 25

  
26 26
class Provisionning(threading.local):
27 27
    __slots__ = ['threads']
28
    threads = set()
29 28

  
30 29
    def __init__(self):
30
        self.threads = set()
31 31
        self.stack = []
32 32

  
33 33
    def start(self):
34
-