first step in python3 support

This commit is contained in:
Romain Bignon 2014-05-17 13:37:47 +02:00
commit 6fcac89dd5
25 changed files with 302 additions and 208 deletions

View file

@ -20,7 +20,10 @@
from copy import copy
from threading import Thread
import Queue
try:
import Queue
except ImportError:
import queue as Queue
from weboob.capabilities.base import CapBaseObject
from weboob.tools.misc import get_backtrace