From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Lhdss-0000re-NI for garchives@archives.gentoo.org; Thu, 12 Mar 2009 05:55:10 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E9A4E0334; Thu, 12 Mar 2009 05:55:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 18FBEE0334 for ; Thu, 12 Mar 2009 05:55:10 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id B491E646C8 for ; Thu, 12 Mar 2009 05:55:09 +0000 (UTC) Received: from zmedico by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1Lhdsr-0002iU-CT for gentoo-commits@lists.gentoo.org; Thu, 12 Mar 2009 05:55:09 +0000 To: gentoo-commits@lists.gentoo.org From: "Zac Medico (zmedico)" Subject: [gentoo-commits] portage r13076 - main/branches/2.1.6/pym/portage/tests/bin X-VCS-Repository: portage X-VCS-Revision: 13076 X-VCS-Files: main/branches/2.1.6/pym/portage/tests/bin/test_dobin.py main/branches/2.1.6/pym/portage/tests/bin/test_dodir.py X-VCS-Directories: main/branches/2.1.6/pym/portage/tests/bin X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico Content-Type: text/plain; charset=UTF-8 Message-Id: Sender: Zac Medico Date: Thu, 12 Mar 2009 05:55:09 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 3ea9cc34-3d66-4a00-9471-c8967f91fc6e X-Archives-Hash: 7362cdf75849910a797cd0d4a619657b Author: zmedico Date: 2009-03-12 05:55:08 +0000 (Thu, 12 Mar 2009) New Revision: 13076 Modified: main/branches/2.1.6/pym/portage/tests/bin/test_dobin.py main/branches/2.1.6/pym/portage/tests/bin/test_dodir.py Log: Use absolute imports instead of relative. (trunk r13062) Modified: main/branches/2.1.6/pym/portage/tests/bin/test_dobin.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/branches/2.1.6/pym/portage/tests/bin/test_dobin.py 2009-03-12 05= :54:56 UTC (rev 13075) +++ main/branches/2.1.6/pym/portage/tests/bin/test_dobin.py 2009-03-12 05= :55:08 UTC (rev 13076) @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ =20 -from setup_env import * +from portage.tests.bin.setup_env import * =20 class DoBin(BinTestCase): def testDoBin(self): Modified: main/branches/2.1.6/pym/portage/tests/bin/test_dodir.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/branches/2.1.6/pym/portage/tests/bin/test_dodir.py 2009-03-12 05= :54:56 UTC (rev 13075) +++ main/branches/2.1.6/pym/portage/tests/bin/test_dodir.py 2009-03-12 05= :55:08 UTC (rev 13076) @@ -3,7 +3,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ =20 -from setup_env import * +from portage.tests.bin.setup_env import * =20 class DoDir(BinTestCase): def testDoDir(self):