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 1QhUkY-0000n9-0a for garchives@archives.gentoo.org; Thu, 14 Jul 2011 22:51:18 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7AD3921C192; Thu, 14 Jul 2011 22:51:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 4AE8821C192 for ; Thu, 14 Jul 2011 22:51:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBCDB1B4058 for ; Thu, 14 Jul 2011 22:51:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A312E80042 for ; Thu, 14 Jul 2011 22:51:02 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <350f17a4c07462fc9fff6e3a87c837e155d611bd.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoopm:master commit in: gentoopm/paludispm/ X-VCS-Repository: proj/gentoopm X-VCS-Files: gentoopm/paludispm/pkg.py X-VCS-Directories: gentoopm/paludispm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 350f17a4c07462fc9fff6e3a87c837e155d611bd Date: Thu, 14 Jul 2011 22:51:02 +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: X-Archives-Hash: a101995d521b5419acfaa08c5f0d6e1d commit: 350f17a4c07462fc9fff6e3a87c837e155d611bd Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Thu Jul 14 22:42:02 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Thu Jul 14 22:42:02 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gentoopm.git;= a=3Dcommit;h=3D350f17a4 Paludis: fix getting atoms. --- gentoopm/paludispm/pkg.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gentoopm/paludispm/pkg.py b/gentoopm/paludispm/pkg.py index 201c443..f70c67b 100644 --- a/gentoopm/paludispm/pkg.py +++ b/gentoopm/paludispm/pkg.py @@ -67,7 +67,7 @@ class PaludisID(PMPackage): =20 @property def atom(self): - return PaludisAtom(self.uniquely_identifying_spec(), + return PaludisAtom(self._pkg.uniquely_identifying_spec(), self._env, self) =20 def __cmp__(self, other):