summaryrefslogtreecommitdiff
path: root/lib/gitlab/sherlock/query.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/sherlock/query.rb')
-rw-r--r--lib/gitlab/sherlock/query.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/sherlock/query.rb b/lib/gitlab/sherlock/query.rb
index 02ddc3f47eb..11561eec32a 100644
--- a/lib/gitlab/sherlock/query.rb
+++ b/lib/gitlab/sherlock/query.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
module Gitlab
module Sherlock
class Query
@@ -48,7 +50,7 @@ module Gitlab
end
unless @query.end_with?(';')
- @query += ';'
+ @query = "#{@query};"
end
end