diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-03 15:36:51 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-10-03 15:36:51 +0000 |
commit | c4a95d5aeb17c898bbdf57c7e45a5a1210591127 (patch) | |
tree | 8e42f23275723b66ff7aa5a2573c44f05c130269 | |
parent | 2297ce58cfb8d4559336bf68bfdadf00cfbb08ed (diff) | |
download | redmine-c4a95d5aeb17c898bbdf57c7e45a5a1210591127.tar.gz redmine-c4a95d5aeb17c898bbdf57c7e45a5a1210591127.zip |
add space after comma to app/models/mail_handler.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20115 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/models/mail_handler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/mail_handler.rb b/app/models/mail_handler.rb index 5222f96a9..229cfb832 100644 --- a/app/models/mail_handler.rb +++ b/app/models/mail_handler.rb @@ -524,7 +524,7 @@ class MailHandler < ActionMailer::Base def cleaned_up_subject subject = email.subject.to_s - subject.strip[0,255] + subject.strip[0, 255] end def self.assign_string_attribute_with_limit(object, attribute, value, limit=nil) |