From 1391f441882ec27b01846868311d3090394ae8b9 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 17 Nov 2019 19:01:22 -0600 Subject: Removed one too many `rescue`s. --- lib/tasks/monsterfork.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tasks') diff --git a/lib/tasks/monsterfork.rake b/lib/tasks/monsterfork.rake index 659573358..efc45b2fe 100644 --- a/lib/tasks/monsterfork.rake +++ b/lib/tasks/monsterfork.rake @@ -14,7 +14,7 @@ namespace :monsterfork do begin next if s.destroyed? s.update_column(:normalized_text, normalize_status(s)) - rescue rescue ActiveRecord::RecordNotFound + rescue ActiveRecord::RecordNotFound true end end -- cgit