From d0723fb8a210d5c9eb412fa44438796ac74605ae Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Fri, 17 Feb 2012 14:08:05 +0100 Subject: [PATCH] python3: Fix import in tests to work with python3 DOH Signed-off-by: Sebastian Spaeth --- test/OLItest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/OLItest/__init__.py b/test/OLItest/__init__.py index 2f85210..6fcd52f 100644 --- a/test/OLItest/__init__.py +++ b/test/OLItest/__init__.py @@ -30,5 +30,5 @@ banner = """%(__productname__)s %(__version__)s import unittest from unittest import TestLoader, TextTestRunner -from globals import default_conf +from .globals import default_conf from TestRunner import OLITestLib