Projet

Général

Profil

host_parse.patch

Benjamin Bohard, 15/01/2016 12:57

Télécharger (478 octets)

Voir les différences:

eolesso/libsecure.py
193 193

  
194 194
    urlparsed = urlparse(url)
195 195
    scheme = urlparsed.scheme
196
    host = urlparsed.netloc
196
    host = urlparsed.netloc.split(':')[0]
197 197
    port = urlparsed.port
198 198
    path = urlparsed.path
199 199
    factory = HTTPClientFactory(url, *args, **kwargs)