diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/alerter.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/alerter.rb b/lib/custodian/alerter.rb index 8bbd47e..e7befaf 100644 --- a/lib/custodian/alerter.rb +++ b/lib/custodian/alerter.rb @@ -77,9 +77,9 @@ class Alerter # Test trange, and format the appropriate message. # if ( BYTEMARK_RANGES.any?{|range| range.include?(IPAddr.new(resolved.to_s))} ) - return "<p>#{host} resolves to <tt>#{resolved}</tt> which is inside the Bytemark network.</p>" + return "<p>#{host} resolves to #{resolved} which is inside the Bytemark network.</p>" else - return "<p>#{host} resolves to <tt>#{resolved}</tt> which is not inside the Bytemark network.</p>" + return "<p>#{host} resolves to #{resolved} which is not inside the Bytemark network.</p>" end end |