summaryrefslogtreecommitdiff
path: root/app/models/ci/variable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/variable.rb')
-rw-r--r--app/models/ci/variable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/ci/variable.rb b/app/models/ci/variable.rb
index 64836ea4fa4..ccc7ce6d268 100644
--- a/app/models/ci/variable.rb
+++ b/app/models/ci/variable.rb
@@ -13,7 +13,7 @@ module Ci
validates :key, uniqueness: {
scope: [:project_id, :environment_scope],
- message: "(%{value}) has already been taken"
+ message: "(%{value}) has already been taken",
}
scope :unprotected, -> { where(protected: false) }