commit: 6e97f3f53f026bd67829dbf0ba5bd6512cd7d924 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org> AuthorDate: Fri Jul 28 10:52:59 2017 +0000 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org> CommitDate: Fri Jul 28 10:52:59 2017 +0000 URL: https://gitweb.gentoo.org/proj/elections.git/commit/?id=6e97f3f5
Fix start date in the election details. Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org> trustees-201707/election-details | 2 +- votify-print.patch | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/trustees-201707/election-details b/trustees-201707/election-details index c1b73cc..8c727c7 100644 --- a/trustees-201707/election-details +++ b/trustees-201707/election-details @@ -1,5 +1,5 @@ name: trustees-201707 -startDate: 2017-07-22 00:00:00 UTC +startDate: 2017-07-27 00:00:00 UTC endDate: 2017-08-16 00:00:01 UTC officials: dilfridge, jmbsvicetto, neddyseagoon, ulm voters: http://www.gentoo.org/proj/en/elections/trustees/2017/voters-trustees-201707.txt diff --git a/votify-print.patch b/votify-print.patch new file mode 100644 index 0000000..2055ba1 --- /dev/null +++ b/votify-print.patch @@ -0,0 +1,19 @@ +diff --git a/Votify.pm b/Votify.pm +index 8e0fe1a..d8c7d22 100644 +--- a/Votify.pm ++++ b/Votify.pm +@@ -84,9 +84,14 @@ sub get_elections_list { + substr($_, 0, 1) ne "."; + } grep { + my $valid_election_dir = validate_election_dir($_); ++ print "$_ is a valid_election_dir\n" if defined $valid_election_dir; + defined $valid_election_dir; + } readdir D; + closedir D; ++ print "These are the contents of the elections array:\n"; ++ foreach (@elections) { ++ print "$_\n"; ++ } + return @elections; + } +
