1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

remove space inside array brackets from lib/redmine/i18n.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20454 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-21 13:51:27 +00:00
parent cce9e49dd5
commit d42d324a3f

View File

@ -89,7 +89,7 @@ module Redmine
if Setting.timespan_format == 'minutes'
h = hours.floor
m = ((hours - h) * 60).round
"%d:%02d" % [ h, m ]
"%d:%02d" % [h, m]
else
"%.2f" % hours.to_f
end