Skip to content

Commit

Permalink
Rubocop autocorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
treydock committed Dec 18, 2023
1 parent 7370b1e commit 3f86876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mcollective/pluginpackager/forge_packager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def render_templates
end

def render_template(infile, outfile)
erb = ERB.new(File.read(infile), safe_level:0, trim_mode:"-")
erb = ERB.new(File.read(infile), :safe_level => 0, :trim_mode => "-")
File.open(outfile, "w") do |f|
f.puts erb.result(binding)
end
Expand Down

0 comments on commit 3f86876

Please sign in to comment.