diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | gurpmi2 | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ - gurpmi o display the download errors o log all urpmi logs + o fix answering yes to questions on error - urpmi.update o fix --force-key (#45094) - urpmi.addmedia @@ -404,7 +404,7 @@ sub ask_yes_or_no { my $w = Gtk2::MessageDialog->new($mainw, [qw(modal destroy-with-parent)], 'warning', 'yes-no', $msg); my $response = $w->run; $w->destroy; - $response eq 'ok'; + $response eq 'yes'; } sub gtk_new_Label_Left { |