Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/sync/
Date: Mon, 29 Sep 2014 18:29:47
Message-Id: 1412011222.4b64e7be52dcc857b670370034da605f1acbe8fa.dol-sen@gentoo
1 commit: 4b64e7be52dcc857b670370034da605f1acbe8fa
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 5 20:14:57 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 29 17:20:22 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=4b64e7be
7
8 portage/sync/controller.py: Remove list copy, module_names list is not modified
9
10 ---
11 pym/portage/sync/controller.py | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py
15 index e8fe291..a5c93dc 100644
16 --- a/pym/portage/sync/controller.py
17 +++ b/pym/portage/sync/controller.py
18 @@ -85,7 +85,7 @@ class SyncManager(object):
19 os.umask(0o22)
20
21 self.module_controller = portage.sync.module_controller
22 - self.module_names = self.module_controller.module_names[:]
23 + self.module_names = self.module_controller.module_names
24
25
26 def get_module_descriptions(self, mod):