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 6071A1381F3 for ; Mon, 24 Jun 2013 19:40:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E53B7E0953; Mon, 24 Jun 2013 19:40:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B238E0953 for ; Mon, 24 Jun 2013 19:40:48 +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 4E862335E31 for ; Mon, 24 Jun 2013 19:40:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E6533E468F for ; Mon, 24 Jun 2013 19:40:45 +0000 (UTC) From: "Arfrever Frehtes Taifersar Arahesis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arfrever Frehtes Taifersar Arahesis" Message-ID: <1372102668.e14c907d32634b9f3335eae43857b3f47f1f06b9.arfrever@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/repository/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/repository/config.py X-VCS-Directories: pym/portage/repository/ X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis X-VCS-Revision: e14c907d32634b9f3335eae43857b3f47f1f06b9 X-VCS-Branch: master Date: Mon, 24 Jun 2013 19:40:45 +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: 8c838846-fac4-411a-bbd8-01f04b6e28fb X-Archives-Hash: 75667c99d1dc3b79aaed165b92712634 commit: e14c907d32634b9f3335eae43857b3f47f1f06b9 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Mon Jun 24 19:37:48 2013 +0000 Commit: Arfrever Frehtes Taifersar Arahesis gmail com> CommitDate: Mon Jun 24 19:37:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e14c907d Improve portage.repository.config.RepoConfig.__repr__() for location of DEFAULT repository. --- pym/portage/repository/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index 076dcea..304335e 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -348,7 +348,7 @@ class RepoConfig(object): return "\n".join(repo_msg) def __repr__(self): - return "" % (self.name, _unicode_decode(self.location)) + return "" % (self.name, _unicode_decode(self.location)) def __str__(self): d = {}