commit: a6297ef046527094d32e3f8eadd65928042254e4
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 7 01:40:25 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sat Sep 27 01:40:46 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=a6297ef0
synv/controller.py: Use assert() on tasks, func
---
pym/portage/sync/controller.py | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/pym/portage/sync/controller.py b/pym/portage/sync/controller.py
index a5c93dc..21b57f4 100644
--- a/pym/portage/sync/controller.py
+++ b/pym/portage/sync/controller.py
@@ -36,8 +36,9 @@ class TaskHandler(object):
def run_tasks(self, tasks, func, status=None, verbose=True,
options=None):
"""Runs the module tasks"""
- if tasks is None or func is None:
- return
+ # Ensure we have a task and function
+ assert(tasks)
+ assert(func)
for task in tasks:
inst = task()
show_progress = self.show_progress_bar and self.isatty