From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7E2EF13838B for ; Sat, 27 Sep 2014 02:20:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48DFDE0AF4; Sat, 27 Sep 2014 02:20:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BEACDE0AF0 for ; Sat, 27 Sep 2014 02:20:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3A2F340042 for ; Sat, 27 Sep 2014 02:20:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6A4F65FF for ; Sat, 27 Sep 2014 02:20:48 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1411782014.c27eca911d3131b4b1a8b6b539a63c20a97ce90a.dol-sen@gentoo> Subject: [gentoo-commits] proj/portage:plugin-sync commit in: pym/portage/emaint/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/emaint/main.py X-VCS-Directories: pym/portage/emaint/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: c27eca911d3131b4b1a8b6b539a63c20a97ce90a X-VCS-Branch: plugin-sync Date: Sat, 27 Sep 2014 02:20:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d49408dc-5fb4-4457-a053-70a51f68b10a X-Archives-Hash: 82dbd1722b9576e21a7ae56269a46614 commit: c27eca911d3131b4b1a8b6b539a63c20a97ce90a Author: Brian Dolbec gentoo org> AuthorDate: Mon Apr 21 18:27:28 2014 +0000 Commit: Brian Dolbec gmail 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)