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 945181389E2 for ; Wed, 31 Dec 2014 21:34:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D6360E08C8; Wed, 31 Dec 2014 21:34:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9718E08C7 for ; Wed, 31 Dec 2014 21:34:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3D1913406D8 for ; Wed, 31 Dec 2014 21:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DD70E985 for ; Wed, 31 Dec 2014 21:34:31 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1419975746.6933a2cc528c124aeb8f1b6d59ac636b9819b167.dolsen@gentoo.org@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/actions.py gkeys/gkeys/base.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen@gentoo.org X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 6933a2cc528c124aeb8f1b6d59ac636b9819b167 X-VCS-Branch: master Date: Wed, 31 Dec 2014 21:34:31 +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: 68e3f200-ebb1-450d-91ff-75be5b8a3c1c X-Archives-Hash: e2eb8ea2c30c7a7b61bce06a3a89cef9 commit: 6933a2cc528c124aeb8f1b6d59ac636b9819b167 Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 28 08:44:06 2014 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Dec 30 21:42:26 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=6933a2cc gkeys/actions.py: Alignment tweak for key-search message --- gkeys/gkeys/actions.py | 2 +- gkeys/gkeys/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index 391d478..0dbdf24 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -907,7 +907,7 @@ class Actions(object): return keys msgs = [] for cat in list(keys): - msgs.append("Category: %s" % cat) + msgs.append("Category.....: %s" % cat) msgs.append(keys[cat]) del keys, cat, handler return (True, msgs) diff --git a/gkeys/gkeys/base.py b/gkeys/gkeys/base.py index 2c0e114..2ec4375 100644 --- a/gkeys/gkeys/base.py +++ b/gkeys/gkeys/base.py @@ -300,7 +300,7 @@ class CliBase(object): print(header) for msg in results: if type(msg) in [str, unicode]: - print(' ', msg) + print(' ', msg) else: try: print("\n".join([x.pretty_print for x in msg]))