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 C4C4613800E for ; Mon, 30 Jul 2012 15:53:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCA26E0477; Mon, 30 Jul 2012 15:53:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 903CDE0477 for ; Mon, 30 Jul 2012 15:53:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B13A31B4022 for ; Mon, 30 Jul 2012 15:53:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 74C1BE5437 for ; Mon, 30 Jul 2012 15:53:20 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1343663611.146b5a9899a85ef3c4a1af3d06887fdef67d7bbe.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: / X-VCS-Repository: proj/R_overlay X-VCS-Files: find_invalid.py X-VCS-Directories: / X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 146b5a9899a85ef3c4a1af3d06887fdef67d7bbe X-VCS-Branch: master Date: Mon, 30 Jul 2012 15:53:20 +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: a5d7dbf8-36e2-4005-af57-99969bd4ef18 X-Archives-Hash: dbff8b1ce130a37aa274e7239166c852 commit: 146b5a9899a85ef3c4a1af3d06887fdef67d7bbe Author: André Erdmann mailerd de> AuthorDate: Mon Jul 30 15:46:31 2012 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Jul 30 15:53:31 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=146b5a98 fix typo --- find_invalid.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/find_invalid.py b/find_invalid.py index 95a3876..dbd6b87 100755 --- a/find_invalid.py +++ b/find_invalid.py @@ -43,7 +43,7 @@ def ebuild_check ( filenames ): if eb and mtd and man: return ( True, True, True ) - return ( eb, man, mtd ) + return ( eb, mtd, man ) for dpath, dnames, fnames in os.walk ( topdir ):