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 1PorW7-0004lS-Rj for garchives@archives.gentoo.org; Mon, 14 Feb 2011 06:02:36 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EE33E09CA; Mon, 14 Feb 2011 06:00:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E84C1E09CA for ; Mon, 14 Feb 2011 06:00:28 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 97B691B4219 for ; Mon, 14 Feb 2011 06:00:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0D91F80074 for ; Mon, 14 Feb 2011 06:00:28 +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: <5e5809bd76bcdab37a6f270a47aa57f5900d4723.dol-sen@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/action.py X-VCS-Directories: layman/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 5e5809bd76bcdab37a6f270a47aa57f5900d4723 Date: Mon, 14 Feb 2011 06:00:28 +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: 96dada735c221026aea25c5f8477b223 commit: 5e5809bd76bcdab37a6f270a47aa57f5900d4723 Author: Brian Dolbec gmail com> AuthorDate: Mon Jan 17 06:39:47 2011 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Feb 11 10:49:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/layman.git;a=3D= commit;h=3D5e5809bd slight code change to my modified base. whitespace cleanup --- layman/action.py | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/layman/action.py b/layman/action.py index 5d8dfd5..7199054 100644 --- a/layman/action.py +++ b/layman/action.py @@ -166,7 +166,7 @@ class Sync: OUT.info('\nSuccess:\n------\n', 3) for i in success: OUT.info(i, 3) - =20 + if warnings: OUT.warn('\nWarnings:\n------\n', 2) for i in warnings: @@ -316,10 +316,10 @@ class Info: * Contact : nobody@gentoo.org * Type : Subversion; Priority: 10 * Quality : experimental - *=20 + * * Description: * Test - *=20 + * 0 ''' =20 @@ -374,7 +374,7 @@ class List(object): =20 def _run(self, complain): for summary, supported, official \ - in self.db.list(self.config['verbose'], self.config['wid= th']): + in self.db.list(None, self.config['verbose'], self.confi= g['width']): # Is the overlay supported? if supported: # Is this an official overlay? @@ -435,22 +435,22 @@ class ListRemote(List): * Contact : nobody@gentoo.org * Type : Subversion; Priority: 10 * Quality : experimental - *=20 + * * Description: * Test - *=20 + * * *** This is no official gentoo overlay *** - *=20 + * * wrobel-stable * ~~~~~~~~~~~~~ * Source : rsync://gunnarwrobel.de/wrobel-stable * Contact : nobody@gentoo.org * Type : Rsync; Priority: 50 * Quality : experimental - *=20 + * * Description: * A collection of ebuilds from Gunnar Wrobel [wrobel@gentoo.org]. - *=20 + * 0 ''' =20 @@ -529,7 +529,7 @@ def main(config): new_umask =3D int(umask, 8) old_umask =3D os.umask(new_umask) except Exception, error: - OUT.die('Failed setting to umask "' + umask + '"!\nError was= : '=20 + OUT.die('Failed setting to umask "' + umask + '"!\nError was= : ' + str(error)) =20 for i in actions: