first step in python3 support
This commit is contained in:
parent
7c1e08eb96
commit
6fcac89dd5
25 changed files with 302 additions and 208 deletions
|
|
@ -18,9 +18,14 @@
|
|||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
from urlparse import urlsplit, parse_qsl, urlparse
|
||||
try:
|
||||
from urlparse import urlsplit, parse_qsl, urlparse
|
||||
except ImportError:
|
||||
from urllib.parse import urlsplit, parse_qsl, urlparse
|
||||
|
||||
from datetime import datetime, timedelta
|
||||
|
||||
from weboob.tools.compat import basestring
|
||||
from weboob.tools.browser2 import LoginBrowser, URL, Wget, need_login
|
||||
from weboob.tools.exceptions import BrowserIncorrectPassword
|
||||
from weboob.capabilities.bank import Transfer, TransferError
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue