You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2020/06/26 15:44:09 UTC

[whimsy] branch master updated: Escapes don't count in single-quotes

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 75fe4a5  Escapes don't count in single-quotes
75fe4a5 is described below

commit 75fe4a5a43b39eb690e2c3482cb2b65a02dcd6da
Author: Sebb <se...@apache.org>
AuthorDate: Fri Jun 26 16:44:00 2020 +0100

    Escapes don't count in single-quotes
---
 www/officers/coi.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/officers/coi.cgi b/www/officers/coi.cgi
index 993835e..5dd3300 100755
--- a/www/officers/coi.cgi
+++ b/www/officers/coi.cgi
@@ -26,7 +26,7 @@ IDS = (chairs.flatten + ASF::Service['board'].members.map(&:id)).uniq
 # Get the list of files in this year's directory
 signerfileslist, err = ASF::SVN.svn('list', COI_CURRENT_URL, {user: $USER.dup.untaint, password: $PASSWORD.dup.untaint})
 raise RuntimeError.new(err) unless signerfileslist
-signerfiles = signerfileslist.split('\n')
+signerfiles = signerfileslist.split("\n")
 
 # Create the hash of {signer: signerurl} and remember user's affirmation file
 SIGNERS = Hash.new