From d8f5618006878c0341bee26f896f46bb4ffaebc7 Mon Sep 17 00:00:00 2001 From: cn Date: Fri, 30 Oct 2020 23:18:11 +0100 Subject: [PATCH] gem: fix new rubocop warnings --- lib/dyndnsd/textfile_reporter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dyndnsd/textfile_reporter.rb b/lib/dyndnsd/textfile_reporter.rb index 857e421..91896cf 100644 --- a/lib/dyndnsd/textfile_reporter.rb +++ b/lib/dyndnsd/textfile_reporter.rb @@ -18,7 +18,7 @@ module Dyndnsd @registry = options[:registry] || Metriks::Registry.default @interval = options[:interval] || 60 - @on_error = options[:on_error] || proc { |ex| } + @on_error = options[:on_error] || proc { |ex| } # default: ignore errors end # @return [void]