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

curcuru 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 7a9ba78  Handle nil
7a9ba78 is described below

commit 7a9ba780527fb5afcc91209b08728f498989feae
Author: Shane Curcuru <[email protected]>
AuthorDate: Thu May 31 08:39:00 2018 -0400

    Handle nil
    
    Note: may not handle root cause of problem
---
 www/status/svn.cgi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/status/svn.cgi b/www/status/svn.cgi
index 4fa2b56..0f6c842 100755
--- a/www/status/svn.cgi
+++ b/www/status/svn.cgi
@@ -162,7 +162,7 @@ _json do
     end
 
     info, err = ASF::SVN.getInfo(local_path)
-    repository_url = info[/^URL: (.*)/, 1]
+    repository_url = info[/^URL: (.*)/, 1] if info
 
   else
     if @action == 'checkout'

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to