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 0296013877A for ; Mon, 16 Jun 2014 22:45:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F2C7E0BAF; Mon, 16 Jun 2014 22:45:10 +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 1183CE0AD5 for ; Mon, 16 Jun 2014 22:45:09 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C489A3400C5 for ; Mon, 16 Jun 2014 22:45:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 07C411880A for ; Mon, 16 Jun 2014 22:45:06 +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: <1402958591.ee4b7cc451b47f1fd55ec0fb8c8c714e15c1f01b.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: ee4b7cc451b47f1fd55ec0fb8c8c714e15c1f01b X-VCS-Branch: plugin-sync Date: Mon, 16 Jun 2014 22:45:06 +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: a89bcbb0-db6a-4495-a222-87010a1d630b X-Archives-Hash: 53966dc80b4746e748ae9d04579e60c4 commit: ee4b7cc451b47f1fd55ec0fb8c8c714e15c1f01b Author: Brian Dolbec gentoo org> AuthorDate: Mon Apr 21 18:27:28 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Mon Jun 16 22:43:11 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=ee4b7cc4 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 6a17027..37edc33 100644 --- a/pym/portage/emaint/main.py +++ b/pym/portage/emaint/main.py @@ -219,5 +219,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) taskmaster.run_tasks(tasks, func, status, options=task_opts)