Reduce severity of reports
diff --git a/tools/download_check.rb b/tools/download_check.rb
index bc0a5c9..076b0f5 100755
--- a/tools/download_check.rb
+++ b/tools/download_check.rb
@@ -313,7 +313,7 @@
   keys = links.select{|h,v| h =~ expurlre}
   if keys.size >= 1
     keytext = keys.first[1]
-    if keytext == 'KEYS'
+    if keytext.strip == 'KEYS'
         I 'Found KEYS link'
     else
         W "Found KEYS: '#{keytext}'"
@@ -395,7 +395,7 @@
           elsif base.sub(/-bin\.|-src\./,'.').end_with? tmp
             W "Mismatch?: #{h} and '#{tmp}'"
           else
-            E "Mismatch2: #{h} and '#{tmp}'"
+            W "Mismatch2: #{h} and '#{tmp}'"
           end
         end        
     end