1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-11-10 14:56:14 +01:00

Merge pull request #538 from lethliel/fix_unimported_urldefrag

Import urldefrag function
This commit is contained in:
Marco Strigl 2019-04-26 12:14:15 +02:00 committed by GitHub
commit c5139fdff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

4
NEWS
View File

@ -1,5 +1,5 @@
0.166.0
-
0.165.1
- fix oscssl "urldefrag is not defined error"
0.165.0
- full python3 compatibility

View File

@ -13,12 +13,12 @@ import sys
import inspect
try:
from urllib.parse import urlparse, splithost, splitport, splittype
from urllib.parse import urlparse, splithost, splitport, splittype, urldefrag
from urllib.request import addinfourl
from http.client import HTTPSConnection
except ImportError:
#python 2.x
from urlparse import urlparse
from urlparse import urlparse, urldefrag
from urllib import addinfourl, splithost, splitport, splittype
from httplib import HTTPSConnection