From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RE9Hy-00085y-5B for garchives@archives.gentoo.org; Thu, 13 Oct 2011 00:36:46 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E80F821C046; Thu, 13 Oct 2011 00:36:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id AF6A521C046 for ; Thu, 13 Oct 2011 00:36:36 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 333711B4010 for ; Thu, 13 Oct 2011 00:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3683380042 for ; Thu, 13 Oct 2011 00:36:35 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <46b3a6df973d00153bef72d03d6c8e5c0e0d6f7e.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: scripts/ X-VCS-Repository: proj/elfix X-VCS-Files: scripts/revdep-pax X-VCS-Directories: scripts/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 46b3a6df973d00153bef72d03d6c8e5c0e0d6f7e Date: Thu, 13 Oct 2011 00:36:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: b11ee74c14612942525fc927b93f404d commit: 46b3a6df973d00153bef72d03d6c8e5c0e0d6f7e Author: Anthony G. Basile gentoo org> AuthorDate: Thu Oct 13 00:36:29 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Thu Oct 13 00:36:29 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3D46b3a6df scripts/revdep-pax: fix call to run_usage() on command line errors --- scripts/revdep-pax | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/revdep-pax b/scripts/revdep-pax index 576025e..f06bf3d 100755 --- a/scripts/revdep-pax +++ b/scripts/revdep-pax @@ -267,11 +267,11 @@ def main(): opts, args =3D getopt.getopt(sys.argv[1:], 'hfrb:s:v') except getopt.GetoptError, err: print str(err) # will print something like 'option -a not recognized' - usage() + run_usage() sys.exit(1) =20 if len(opts) =3D=3D 0: - usage() + run_usage() sys.exit(1) =20 do_usage =3D False