diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-24 16:45:01 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-24 16:45:01 +0000 |
commit | 33ed57a223da36b9a2f3ae8cd46ef4b817bbda23 (patch) | |
tree | 4500dcd4aada92c825c6c40f2669110cd20e1152 | |
parent | 430236a2af7ab6749c61039b7a45a6205a70b200 (diff) | |
download | redmine-33ed57a223da36b9a2f3ae8cd46ef4b817bbda23.tar.gz redmine-33ed57a223da36b9a2f3ae8cd46ef4b817bbda23.zip |
cleanup: rubocop: fix Layout/SpaceAfterComma in app/models/mailer.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19271 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/models/mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/mailer.rb b/app/models/mailer.rb index 8253bccf1..550c149cb 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -742,7 +742,7 @@ class Mailer < ActionMailer::Base # Appends a Redmine header field (name is prepended with 'X-Redmine-') def redmine_headers(h) - h.each { |k,v| headers["X-Redmine-#{k}"] = v.to_s } + h.each {|k, v| headers["X-Redmine-#{k}"] = v.to_s} end # Singleton class method is public |