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 3BE291381F3 for ; Sun, 15 Sep 2013 14:10:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E5CAE0C8B; Sun, 15 Sep 2013 14:10:29 +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 B2B0CE0C8B for ; Sun, 15 Sep 2013 14:10:28 +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 871A633EAA5 for ; Sun, 15 Sep 2013 14:10:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 38633E530A for ; Sun, 15 Sep 2013 14:10:26 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1379254113.9e1d8136e644281729e278b68e6272ab2954ee6f.zmedico@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: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9e1d8136e644281729e278b68e6272ab2954ee6f X-VCS-Branch: master Date: Sun, 15 Sep 2013 14:10:26 +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: cbd983b0-28dc-426a-a419-e45a4f88f2c9 X-Archives-Hash: 55dc8d2b350a7deb4c5f90b3c4cbf84e commit: 9e1d8136e644281729e278b68e6272ab2954ee6f Author: Zac Medico gentoo org> AuthorDate: Sun Sep 15 14:08:33 2013 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Sep 15 14:08:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=9e1d8136 RepoConfig: fix bug #485006 --- pym/portage/repository/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pym/portage/repository/config.py b/pym/portage/repository/config.py index b5289d9..bb63b1a 100644 --- a/pym/portage/repository/config.py +++ b/pym/portage/repository/config.py @@ -182,7 +182,8 @@ class RepoConfig(object): # The name from repos.conf has to be used here for # things like emerge-webrsync to work when the repo # is empty (bug #484950). - self.name = name + if name is not None: + self.name = name if portage._sync_disabled_warnings: missing = False