public inbox for gentoo-portage-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-portage-dev] [PATCH] sync: fix module_names enumeration
@ 2015-01-17 13:16 Michał Górny
  2015-01-17 22:41 ` Zac Medico
  2015-01-18  9:49 ` Brian Dolbec
  0 siblings, 2 replies; 4+ messages in thread
From: Michał Górny @ 2015-01-17 13:16 UTC (permalink / raw
  To: gentoo-portage-dev; +Cc: Michał Górny

Fix module_names enumeration to consider all modules. Before, the first
module on the list was omitted ('cvs' in this case).

Another thing is, the CVS module is completely, utterly and inevitably
broken. And the whole syncing thing is a great pile of terribly
mis-designed, unnecessarily complex code which can't work unless it is
worked around like git module does...
---
 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 9001298..3d217db 100644
--- a/pym/portage/sync/controller.py
+++ b/pym/portage/sync/controller.py
@@ -119,7 +119,7 @@ class SyncManager(object):
 		self.callback = callback or self._sync_callback
 		self.repo = repo
 		self.exitcode = 1
-		if repo.sync_type in self.module_names[1:]:
+		if repo.sync_type in self.module_names:
 			tasks = [self.module_controller.get_class(repo.sync_type)]
 		else:
 			msg = "\n%s: Sync module '%s' is not an installed/known type'\n" \
-- 
2.2.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-01-18 10:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-17 13:16 [gentoo-portage-dev] [PATCH] sync: fix module_names enumeration Michał Górny
2015-01-17 22:41 ` Zac Medico
2015-01-18  9:49 ` Brian Dolbec
2015-01-18 10:32   ` Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox