Fix Style/FormatString.

This commit is contained in:
Markus Reiter 2016-09-23 17:29:29 +02:00
parent 246bb1a3b1
commit 2b92f907b7
2 changed files with 1 additions and 8 deletions

View File

@ -119,13 +119,6 @@ Style/ConstantName:
Exclude:
- 'Homebrew/os/mac.rb'
# Offense count: 1
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: format, sprintf, percent
Style/FormatString:
Exclude:
- 'Homebrew/formula.rb'
# Offense count: 13
# Configuration parameters: AllowedVariables.
Style/GlobalVars:

View File

@ -1668,7 +1668,7 @@ class Formula
@exec_count ||= 0
@exec_count += 1
logfn = "#{logs}/#{active_log_prefix}%02d.%s" % [@exec_count, File.basename(cmd).split(" ").first]
logfn = format("#{logs}/#{active_log_prefix}%02d.%s", @exec_count, File.basename(cmd).split(" ").first)
logs.mkpath
File.open(logfn, "w") do |log|