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 55E6013877A for ; Fri, 5 Sep 2014 21:16:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A031AE0B97; Fri, 5 Sep 2014 21:15:56 +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 54DD4E0B94 for ; Fri, 5 Sep 2014 21:15:55 +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 5ECDE34015C for ; Fri, 5 Sep 2014 21:15:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 920C64CFA for ; Fri, 5 Sep 2014 21:15:49 +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: <1409948775.2f7aeea093b05516756b817fdb2b9e7dce034f54.dol-sen@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: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 2f7aeea093b05516756b817fdb2b9e7dce034f54 X-VCS-Branch: plugin-sync Date: Fri, 5 Sep 2014 21:15:49 +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: 4de59db3-721b-49c2-a9c0-c6af9364650f X-Archives-Hash: e77f995501dae4763251a0360350cb26 commit: 2f7aeea093b05516756b817fdb2b9e7dce034f54 Author: Brian Dolbec gentoo org> AuthorDate: Fri Sep 5 20:14:57 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Sep 5 20:26:15 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2f7aeea0 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):