Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/emaint/
Date: Mon, 29 Sep 2014 18:29:34
Message-Id: 1412011220.c7f5bbbf27887dc725570c0ad8e654cef8e53c76.dol-sen@gentoo
1 commit: c7f5bbbf27887dc725570c0ad8e654cef8e53c76
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 21 18:27:28 2014 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 29 17:20:20 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=c7f5bbbf
7
8 portage/emaint/main.py: Add 'return-messages' boolean to options passed in
9
10 ---
11 pym/portage/emaint/main.py | 1 +
12 1 file changed, 1 insertion(+)
13
14 diff --git a/pym/portage/emaint/main.py b/pym/portage/emaint/main.py
15 index 646883d..f76cee2 100644
16 --- a/pym/portage/emaint/main.py
17 +++ b/pym/portage/emaint/main.py
18 @@ -221,5 +221,6 @@ def emaint_main(myargv):
19 # need to pass the parser options dict to the modules
20 # so they are available if needed.
21 task_opts = options.__dict__
22 + task_opts['return-messages'] = True
23 taskmaster = TaskHandler(callback=print_results, module_output=sys.stdout)
24 taskmaster.run_tasks(tasks, func, status, options=task_opts)