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 1QwQhf-0006CR-44 for garchives@archives.gentoo.org; Thu, 25 Aug 2011 03:34:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80A7521C05C; Thu, 25 Aug 2011 03:33:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3DA1121C05C for ; Thu, 25 Aug 2011 03:33:55 +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 6100B1B4026 for ; Thu, 25 Aug 2011 03:33:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6E2EC80040 for ; Thu, 25 Aug 2011 03:33:53 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/argsparser.py X-VCS-Directories: layman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: de32dea6179e96cb5b7fa1088134a41f4e78fa9b Date: Thu, 25 Aug 2011 03:33:53 +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: 986bc3a4ca10c2bd6462db3cf73c2cab commit: de32dea6179e96cb5b7fa1088134a41f4e78fa9b Author: dol-sen gmail com> AuthorDate: Thu Aug 25 03:33:03 2011 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Aug 25 03:33:03 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/layman.git;a=3D= commit;h=3Dde32dea6 fix a missed conversion to using the Message class --- layman/argsparser.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/layman/argsparser.py b/layman/argsparser.py index 1cb71b3..e1703ac 100644 --- a/layman/argsparser.py +++ b/layman/argsparser.py @@ -241,7 +241,7 @@ class ArgsParser(BareConfig): # Parse the command line first since we need to get the config # file option. if len(args) =3D=3D 1: - print >> self.std_out, 'Usage:%s' % _USAGE + self.output.notice('Usage:%s' % _USAGE) sys.exit(0) =20 (self.options, remain_args) =3D self.parser.parse_args(args)