summaryrefslogtreecommitdiff
path: root/lib/custodian/protocoltest/ssl.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 13:15:06 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 13:15:06 +0000
commite950dc3c5163f1305deffede93e77209e90ecacb (patch)
treee580fe21c6cd560ffcbb1452ccd618dc74faeefd /lib/custodian/protocoltest/ssl.rb
parent3acb2e1be6ddeb421efbd1b3598c1ed547d1b38b (diff)
Do not terminate expressions with ";".
Ruby is not Perl, much as I sometimes wish it were.
Diffstat (limited to 'lib/custodian/protocoltest/ssl.rb')
-rw-r--r--lib/custodian/protocoltest/ssl.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/ssl.rb b/lib/custodian/protocoltest/ssl.rb
index 9f65712..86acb34 100644
--- a/lib/custodian/protocoltest/ssl.rb
+++ b/lib/custodian/protocoltest/ssl.rb
@@ -427,7 +427,7 @@ module Custodian
return true
else
puts( "SSL Verification for #{@host} has failed." )
- @error = "SSL Verification for #{@host} failed: ";
+ @error = "SSL Verification for #{@host} failed: "
@error += s.errors.join("\n")
return false
end