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/mx.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/mx.rb')
-rw-r--r-- | lib/custodian/protocoltest/mx.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/mx.rb b/lib/custodian/protocoltest/mx.rb index b77e596..0df1b5d 100644 --- a/lib/custodian/protocoltest/mx.rb +++ b/lib/custodian/protocoltest/mx.rb @@ -144,7 +144,7 @@ module Custodian @error = "There are #{mx.size} hosts running as MX-servers for domain #{@host} - #{passed}:OK #{failed}:FAILED - #{error}" return false else - return true; + return true end end |