]> source.dussan.org Git - redmine.git/commitdiff
remove space inside array brackets from lib/redmine/i18n.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 21 Nov 2020 13:51:27 +0000 (13:51 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 21 Nov 2020 13:51:27 +0000 (13:51 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20454 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/i18n.rb

index d1e89c129e4c7ca67f2e3453d9b859b726161d72..ef6f04f3f568e2a1cf7cf3465e0d58f14f5ae00f 100644 (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