Port to Python 2.4: remove more relative imports.

This commit is contained in:
Bastian Kleineidam 2010-03-04 15:00:07 +01:00
parent 76ede8c91d
commit 778c1e366b
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from . import ArchiveTest, needs_program, needs_codec
from tests import ArchiveTest, needs_program, needs_codec
class TestArchives (ArchiveTest):

View File

@ -13,7 +13,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from . import ArchiveTest, needs_program, needs_codec
from tests import ArchiveTest, needs_program, needs_codec
class TestArchives (ArchiveTest):

View File

@ -16,7 +16,7 @@
import unittest
import os
import patoolib
from . import needs_program, datadir
from tests import needs_program, datadir
class TestMime (unittest.TestCase):