From: Christian Heimes Date: Fri, 28 Mar 2008 10:52:42 +0000 (+0000) Subject: Fixed an import X-Git-Tag: v3.0a4~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75d43c839e12d6251c6ad26970cd0c4f3ef28de7;p=thirdparty%2FPython%2Fcpython.git Fixed an import --- diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index 6d3367234422..3b2945c87583 100755 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -6,7 +6,7 @@ try: from tests import support except ImportError: - import support + from . import support # Python imports import unittest