Skip to content

Commit

Permalink
fix translation
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Aug 22, 2022
1 parent fcea198 commit 27013be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/y2users/linux/users_writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ def write_ssh_auth_keys
@users_to_write_ssh_keys.each_pair do |user, old_keys|
system_user = system_users.by_name(user.name)
if !system_user
issues << Y2Issues::Issue.new(_("Failed to find user with name '#{user.name}'"))
issues << Y2Issues::Issue.new(
format(_("Failed to find user with name '%s'"), user.name)
)
log.error("Failed to find user with name #{user.name}")
next
end
Expand Down

0 comments on commit 27013be

Please sign in to comment.