aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2017-07-28 10:52:59 +0000
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2017-07-28 10:52:59 +0000
commit6e97f3f53f026bd67829dbf0ba5bd6512cd7d924 (patch)
tree3227647a60a6a24e8f6b14533e8989efb1e0d769
parentRemove whitespace from the voters file. (diff)
downloadelections-6e97f3f53f026bd67829dbf0ba5bd6512cd7d924.tar.gz
elections-6e97f3f53f026bd67829dbf0ba5bd6512cd7d924.tar.bz2
elections-6e97f3f53f026bd67829dbf0ba5bd6512cd7d924.zip
Fix start date in the election details.
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>
-rw-r--r--trustees-201707/election-details2
-rw-r--r--votify-print.patch19
2 files changed, 20 insertions, 1 deletions
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;
+ }
+