commit: c27eca911d3131b4b1a8b6b539a63c20a97ce90a
Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 21 18:27:28 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sat Sep 27 01:40:14 2014 +0000
URL:
http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=c27eca91
portage/emaint/main.py: Add 'return-messages' boolean to options passed in
---
pym/portage/emaint/main.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/pym/portage/emaint/main.py b/pym/portage/emaint/main.py
index 646883d..f76cee2 100644
--- a/pym/portage/emaint/main.py
+++ b/pym/portage/emaint/main.py
@@ -221,5 +221,6 @@ def emaint_main(myargv):
# need to pass the parser options dict to the modules
# so they are available if needed.
task_opts = options.__dict__
+ task_opts['return-messages'] = True
taskmaster = TaskHandler(callback=print_results,
module_output=sys.stdout)
taskmaster.run_tasks(tasks, func, status, options=task_opts)