From 7acf9e6cafe2b3c90ebcd9103b1ca4f5a3be370a Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Wed, 23 Oct 2024 11:40:14 +0200 Subject: [PATCH] FIX: Invalid `raise` syntax (#29364) --- app/models/theme_modifier_set.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/theme_modifier_set.rb b/app/models/theme_modifier_set.rb index 89eda882595..c68b564c4c3 100644 --- a/app/models/theme_modifier_set.rb +++ b/app/models/theme_modifier_set.rb @@ -126,7 +126,7 @@ class ThemeModifierSet < ActiveRecord::Base type = :boolean else if !%i[boolean string].include?(info.type) - raise ThemeModifierSetError "Invalid theme modifier column type" + raise ThemeModifierSetError, "Invalid theme modifier column type" end end