Modifications needed for Odoo 11.0 and Python3

This commit is contained in:
Jared Kipe
2018-09-06 15:32:08 -07:00
parent 02319947bc
commit 735e0e896d
6 changed files with 14 additions and 43 deletions

View File

@@ -9,9 +9,9 @@
:license: BSD, see LICENSE for more details.
"""
from ConfigParser import NoOptionError, NoSectionError, SafeConfigParser
from urllib import pathname2url
from urlparse import urljoin
from configparser import NoOptionError, NoSectionError, SafeConfigParser
from urllib.request import pathname2url
from urllib.parse import urljoin
import os