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 4EBB71384AE for ; Sat, 19 Sep 2015 17:32:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79B1821C07B; Sat, 19 Sep 2015 17:32:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE5C421C07D for ; Sat, 19 Sep 2015 17:32:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84F65340F0E for ; Sat, 19 Sep 2015 17:32:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1808183 for ; Sat, 19 Sep 2015 17:32:03 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1442683844.e58efdf56ed834e46f96fc9dc18fad807bc67d8b.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/actions.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e58efdf56ed834e46f96fc9dc18fad807bc67d8b X-VCS-Branch: repoman Date: Sat, 19 Sep 2015 17:32:03 +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: 1722cec2-2dd7-4314-8d74-f6a9a4f0814c X-Archives-Hash: d33b2934c11374907a5380d5df2b7eef commit: e58efdf56ed834e46f96fc9dc18fad807bc67d8b Author: Brian Dolbec gentoo org> AuthorDate: Sat Sep 19 17:30:44 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat Sep 19 17:30:44 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e58efdf5 repoman/actions.py: Fix missed repoman_settings assignment pym/repoman/actions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py index 504e573..fef53da 100644 --- a/pym/repoman/actions.py +++ b/pym/repoman/actions.py @@ -41,6 +41,7 @@ class Actions(object): self.options = options self.scanner = scanner self.vcs_settings = vcs_settings + self.repoman_settings = repo_settings.repoman_settings self.suggest = { 'ignore_masked': False, 'include_dev': False,