Skip to content

Commit

Permalink
Make Rubocop happy
Browse files Browse the repository at this point in the history
  • Loading branch information
cwh42 committed Aug 24, 2016
1 parent f00b48d commit 8bdcbf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/installation/select_system_role.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def clear_role
def role_buttons
ui_roles = role_attributes.each_with_object(VBox()) do |r, vbox|
# bsc#995082: System role descriptions use a character that is missing in console font
description = Yast::UI.TextMode ? r[:description].gsub('•', '*') : r[:description]
description = Yast::UI.TextMode ? r[:description].tr("•", "*") : r[:description]
vbox << Left(RadioButton(Id(r[:id]), r[:label]))
vbox << HBox(
HSpacing(Yast::UI.TextMode ? 4 : 2),
Expand Down

0 comments on commit 8bdcbf0

Please sign in to comment.