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 E621E138CDC for ; Sun, 31 May 2015 05:03:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4CE7CE08AA; Sun, 31 May 2015 05:03:22 +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 B3EB6E08AA for ; Sun, 31 May 2015 05:03:21 +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 0C919340C87 for ; Sun, 31 May 2015 05:03:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD8BBA07 for ; Sun, 31 May 2015 05:03:18 +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: <1433027930.2573d49b85fabcb871d067c678888f92fe75cfd4.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/seedhandler.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 2573d49b85fabcb871d067c678888f92fe75cfd4 X-VCS-Branch: master Date: Sun, 31 May 2015 05:03:18 +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: 7c1c7d33-5065-450a-8b9e-af0d8923972b X-Archives-Hash: 03608da4c019e0c668967f781b28eeaf commit: 2573d49b85fabcb871d067c678888f92fe75cfd4 Author: Brian Dolbec gentoo org> AuthorDate: Wed Mar 18 20:42:30 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat May 30 23:18:50 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=2573d49b gkeys/seedhandler.py: Add space removal for fingerprints in build_gkeydict() gkeys/gkeys/seedhandler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gkeys/gkeys/seedhandler.py b/gkeys/gkeys/seedhandler.py index adf9507..a905051 100644 --- a/gkeys/gkeys/seedhandler.py +++ b/gkeys/gkeys/seedhandler.py @@ -53,6 +53,8 @@ class SeedHandler(object): value = getattr(args, attr) if attr == 'name' and isinstance(value, list): value = " ".join(value) + if attr == 'fingerprint' and value: + value = [x.replace(" ", "") for x in value] if value is not None: keyinfo[attr] = decoder(value) except AttributeError: