Skip to content

Commit

Permalink
Merge pull request #19113 from mzazrivec/remove_extraneous_character
Browse files Browse the repository at this point in the history
Remove extraneous character

(cherry picked from commit bb74b10)
  • Loading branch information
bdunne authored and simaishi committed Aug 8, 2019
1 parent 9a91d36 commit 11e3f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/locale.rake
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ namespace :locale do
diff = new_pot - old_pot
puts "--------------------------------------------------"
puts "Current string / word count: %{str} / %{word}" % {:str => old_pot.length, :word => old_pot.join(' ').split.size}
puts "Updated string / word count: %s{str} / %{word}" % {:str => new_pot.length, :word => new_pot.join(' ').split.size}
puts "Updated string / word count: %{str} / %{word}" % {:str => new_pot.length, :word => new_pot.join(' ').split.size}
puts
puts "New string / word count: %{str} / %{word}" % {:str => diff.length, :word => diff.join(' ').split.size}
puts "--------------------------------------------------"
Expand Down

0 comments on commit 11e3f82

Please sign in to comment.