lib/turn/reporter.rb in turn-0.9.6 vs lib/turn/reporter.rb in turn-0.9.7

- old
+ new

@@ -117,10 +117,10 @@ end # def ticktock t = Time.now - @time - h, t = t.divmod(60) + h, t = t.divmod(3600) m, t = t.divmod(60) s = t.truncate f = ((t - s) * 1000).to_i "%01d:%02d:%02d.%03d" % [h,m,s,f]