summaryrefslogtreecommitdiff
path: root/app/controllers/ci
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-06-29 15:16:04 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-06-29 15:16:04 +0200
commit9798ac77ed3a1e6106f22c3304f431763ec2cf45 (patch)
tree68f12e30e699aeeaaae1db02bf8b879ac7b71c93 /app/controllers/ci
parent9e8fdead1789b425152256ec977241e7f19123ce (diff)
downloadgitlab-ce-9798ac77ed3a1e6106f22c3304f431763ec2cf45.tar.gz
Enable Style/SpaceAfterColon Rubocop cops
Diffstat (limited to 'app/controllers/ci')
-rw-r--r--app/controllers/ci/projects_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/ci/projects_controller.rb b/app/controllers/ci/projects_controller.rb
index 8bf71a1adbb..aa894fde36b 100644
--- a/app/controllers/ci/projects_controller.rb
+++ b/app/controllers/ci/projects_controller.rb
@@ -25,7 +25,7 @@ module Ci
return render_404 unless @project
image = Ci::ImageForBuildService.new.execute(@project, params)
- send_file image.path, filename: image.name, disposition: 'inline', type:"image/svg+xml"
+ send_file image.path, filename: image.name, disposition: 'inline', type: "image/svg+xml"
end
protected