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 1SM4XL-0005z3-2R for garchives@archives.gentoo.org; Sun, 22 Apr 2012 21:41:39 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C2B0E0AB7; Sun, 22 Apr 2012 21:41:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2A793E0AB7 for ; Sun, 22 Apr 2012 21:41:21 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92C391B40F5 for ; Sun, 22 Apr 2012 21:41:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 56D30E5402 for ; Sun, 22 Apr 2012 21:41:19 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1335130863.43a15b85b5e719b5cb4f49f9f7210fc5129a9d87.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/dep/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/dep/__init__.py X-VCS-Directories: pym/portage/dep/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 43a15b85b5e719b5cb4f49f9f7210fc5129a9d87 X-VCS-Branch: master Date: Sun, 22 Apr 2012 21:41:19 +0000 (UTC) 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: aca396f4-5d8d-4d8a-8b6b-1379aa657f32 X-Archives-Hash: 58a9b96506f37de03e4143c7f9c43a93 commit: 43a15b85b5e719b5cb4f49f9f7210fc5129a9d87 Author: Zac Medico gentoo org> AuthorDate: Sun Apr 22 21:41:03 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Apr 22 21:41:03 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D43a15b85 dep.__init__: move writemsg import to top --- pym/portage/dep/__init__.py | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py index 3832b0b..0a7fc57 100644 --- a/pym/portage/dep/__init__.py +++ b/pym/portage/dep/__init__.py @@ -33,7 +33,7 @@ from itertools import chain =20 import portage portage.proxy.lazyimport.lazyimport(globals(), - 'portage.util:cmp_sort_key', + 'portage.util:cmp_sort_key,writemsg', ) =20 from portage import _unicode_decode @@ -1882,7 +1882,6 @@ def match_from_list(mydep, candidate_list): if not candidate_list: return [] =20 - from portage.util import writemsg if "!" =3D=3D mydep[:1]: if "!" =3D=3D mydep[1:2]: mydep =3D mydep[2:]