From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 30FD613800E for ; Tue, 24 Jul 2012 17:19:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 190B1E0230; Tue, 24 Jul 2012 17:18:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DAA6CE0230 for ; Tue, 24 Jul 2012 17:18:52 +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 473C81B453E for ; Tue, 24 Jul 2012 17:18:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0EB79E5436 for ; Tue, 24 Jul 2012 17:18:51 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1343150186.391f40a6e2f3b384ebe4c07312b18829880ecc20.fuzzyray@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/package.py X-VCS-Directories: pym/gentoolkit/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 391f40a6e2f3b384ebe4c07312b18829880ecc20 X-VCS-Branch: gentoolkit Date: Tue, 24 Jul 2012 17:18:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 72668253-9cfb-45d6-9609-4eb77b88d22a X-Archives-Hash: 3419c301b180f7067c461f87c0a47519 commit: 391f40a6e2f3b384ebe4c07312b18829880ecc20 Author: Paul Varner gentoo org> AuthorDate: Tue Jul 24 17:16:26 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Tue Jul 24 17:16:26 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=391f40a6 Return string from Package.__str__ (Bug 423209) Patch from Brennan Shacklett --- pym/gentoolkit/package.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/gentoolkit/package.py b/pym/gentoolkit/package.py index 38f2901..cbb7131 100644 --- a/pym/gentoolkit/package.py +++ b/pym/gentoolkit/package.py @@ -113,7 +113,7 @@ class Package(CPV): return key in self.cpv def __str__(self): - return self.cpv + return str(self.cpv) @property def metadata(self):