1 |
commit: 99d191360a1d0d84f82ab899fdeba111bc3cd16b |
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: Tue Sep 30 00:42:27 2014 +0000 |
6 |
URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=99d19136 |
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): |