move import to right file

This commit is contained in:
Christophe Benz 2010-07-12 13:57:58 +02:00
commit fd2f534be9
2 changed files with 5 additions and 4 deletions

View file

@ -16,6 +16,11 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
import sys
if sys.version_info[:2] <= (2, 5):
import weboob.tools.property
from .cap import ICap from .cap import ICap

View file

@ -20,16 +20,12 @@ from __future__ import with_statement
from logging import warning from logging import warning
import os import os
import sys
from weboob.core.bcall import BackendsCall from weboob.core.bcall import BackendsCall
from weboob.core.backends import BackendsConfig, BackendsLoader from weboob.core.backends import BackendsConfig, BackendsLoader
from weboob.core.scheduler import Scheduler from weboob.core.scheduler import Scheduler
from weboob.tools.backend import BaseBackend from weboob.tools.backend import BaseBackend
if sys.version_info[:2] <= (2, 5):
import weboob.tools.property
__all__ = ['Weboob'] __all__ = ['Weboob']