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 1RFuRa-0004kq-MD for garchives@archives.gentoo.org; Mon, 17 Oct 2011 21:09:58 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96CDE21C139; Mon, 17 Oct 2011 21:09:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6301521C139 for ; Mon, 17 Oct 2011 21:09:41 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C94751B4019 for ; Mon, 17 Oct 2011 21:09:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1282180042 for ; Mon, 17 Oct 2011 21:09:40 +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: Subject: [gentoo-commits] proj/elfix:elfix-0.2.x 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: e0dc791e4349b94c4faa0be1d287025d34db7f10 Date: Mon, 17 Oct 2011 21:09:40 +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: 0f2759adbe462b96433c7b42c5535e37 commit: e0dc791e4349b94c4faa0be1d287025d34db7f10 Author: Anthony G. Basile gentoo org> AuthorDate: Thu Oct 13 00:36:29 2011 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Oct 17 21:03:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/elfix.git;a=3D= commit;h=3De0dc791e 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