1
0
mirror of https://github.com/OfflineIMAP/offlineimap.git synced 2024-06-26 07:29:03 +02:00

python3: Fix import in tests to work with python3

DOH

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2012-02-17 14:08:05 +01:00
parent 40bc1f50e7
commit d0723fb8a2

View File

@ -30,5 +30,5 @@ banner = """%(__productname__)s %(__version__)s
import unittest import unittest
from unittest import TestLoader, TextTestRunner from unittest import TestLoader, TextTestRunner
from globals import default_conf from .globals import default_conf
from TestRunner import OLITestLib from TestRunner import OLITestLib