From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 25808139694 for ; Sun, 25 Jun 2017 00:04:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5252FE0849; Sun, 25 Jun 2017 00:04:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A2A9E0849 for ; Sun, 25 Jun 2017 00:04:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D499F3417F1 for ; Sun, 25 Jun 2017 00:04:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FAD07480 for ; Sun, 25 Jun 2017 00:04:35 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1498349044.2433330ac00a69b6960746cd6bd2c4fce490626b.robbat2@gentoo> Subject: [gentoo-commits] proj/elections:master commit in: / X-VCS-Repository: proj/elections X-VCS-Files: Votify.pm X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 2433330ac00a69b6960746cd6bd2c4fce490626b X-VCS-Branch: master Date: Sun, 25 Jun 2017 00:04:35 +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: ee89d9ea-4443-43f0-ac6c-efa5dc4263c2 X-Archives-Hash: 139d79c788a7313be8a5ee81a3bd4ebd commit: 2433330ac00a69b6960746cd6bd2c4fce490626b Author: Robin H. Johnson gentoo org> AuthorDate: Sun Jun 25 00:04:04 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Jun 25 00:04:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/elections.git/commit/?id=2433330a Votify: undef fixed, disable debug Signed-off-by: Robin H. Johnson gentoo.org> Votify.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Votify.pm b/Votify.pm index d24b8cb..87fba2f 100644 --- a/Votify.pm +++ b/Votify.pm @@ -129,9 +129,9 @@ sub get_single_election_hashref { return undef unless defined $election_dir; my %election; foreach my $fn (@REQUIRED_FILES){ - print STDERR "Scan $fn\n"; + #print STDERR "Scan $fn\n"; my @filenames = (sprintf("%s/%s", "$basedir/$election_name", $fn), sprintf("%s/%s-%s", "$basedir/$election_name", $fn, $election_name)); - print STDERR Dumper(@filenames); + #print STDERR Dumper(@filenames); my $filename = abs_path(List::Util::first { $_ && -f $_ } @filenames); $election{"${fn}file"} = $filename; };