diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:15:06 +0000 |
commit | 48e66ecec133ef348c0a46b80998230116121f3b (patch) | |
tree | 98484eb8680894990229e77e9f3004fed6836017 /lib/custodian/protocoltest/ssl.rb | |
parent | 82171c3406a790ac9740c439e2aafce21853e0a0 (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.rb | 2 |
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 |