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 626921387FF for ; Mon, 20 Oct 2014 03:55:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 685B0E096D; Mon, 20 Oct 2014 03:54:53 +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 BC5C7E092B for ; Mon, 20 Oct 2014 03:54:51 +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 8349834048A for ; Mon, 20 Oct 2014 03:54:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B38AE84B3 for ; Mon, 20 Oct 2014 03:54:46 +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: <1413776915.76d4733300675dc601dccb303e938c142a3ac85d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/sync/controller.py X-VCS-Directories: pym/portage/sync/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 76d4733300675dc601dccb303e938c142a3ac85d X-VCS-Branch: plugin-sync Date: Mon, 20 Oct 2014 03:54:46 +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: 6e4f0fcf-b49e-42ac-91d5-558e4b9ad96c X-Archives-Hash: 5a8b8f8c566f6ba7a51b7ea2bddda7f6 commit: 76d4733300675dc601dccb303e938c142a3ac85d Author: Brian Dolbec gentoo org> AuthorDate: Fri Sep 5 20:14:57 2014 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Oct 20 03:48:35 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=76d47333 portage/sync/controller.py: Remove list copy, module_names list is not modified --- pym/portage/sync/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py index e8fe291..a5c93dc 100644 --- a/pym/portage/sync/controller.py +++ b/pym/portage/sync/controller.py @@ -85,7 +85,7 @@ class SyncManager(object): os.umask(0o22) self.module_controller = portage.sync.module_controller - self.module_names = self.module_controller.module_names[:] + self.module_names = self.module_controller.module_names def get_module_descriptions(self, mod):