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 2019/07/28 20:31:09 UTC

[whimsy] branch master updated: Show spaces

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 32d9ba5  Show spaces
32d9ba5 is described below

commit 32d9ba594e827cbfade24904cc72c1d26540b37c
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jul 28 21:31:05 2019 +0100

    Show spaces
---
 www/secretary/ldap-check.cgi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www/secretary/ldap-check.cgi b/www/secretary/ldap-check.cgi
index 5378de8..8e4fd12 100755
--- a/www/secretary/ldap-check.cgi
+++ b/www/secretary/ldap-check.cgi
@@ -195,7 +195,7 @@ _html do
     _p do
       _ 'The following ids are in the new group but not the old'
       _br
-      _ new_old.join(',')
+      _ new_old.(&:inspect).join(',')
     end
   elsif old_new.size == 0
   _p 'The groups are equal'
@@ -205,7 +205,7 @@ _html do
     _p do
       _ 'The following ids are in the old group but not the new'
       _br
-      _ old_new.join(',')
+      _ old_new.(&:inspect).join(',')
     end
   end