diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | urpm/download.pm | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- library: + o display exceptions that happened while downloading (mga#9529) + Version 7.23 - 21 March 2013, by Thierry Vignaud - library: diff --git a/urpm/download.pm b/urpm/download.pm index 5b1470f1..8284e81a 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -926,6 +926,7 @@ sub sync_rel { $urpm->{log}(N("retrieved %s", $files_text)); \@result_files; } else { + $urpm->{log}("error: $err"); # don't leave partial download unlink @result_files; undef; |