commit: 99d191360a1d0d84f82ab899fdeba111bc3cd16b Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org> AuthorDate: Fri Sep 5 20:14:57 2014 +0000 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com> CommitDate: Tue Sep 30 00:42:27 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=99d19136
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):