diff options
author | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-05 09:09:45 +0000 |
---|---|---|
committer | Christophe Fergeau <cfergeau@mandriva.com> | 2009-10-05 09:09:45 +0000 |
commit | 15472b91a64eae38e9bf23ab33300d562bf4c447 (patch) | |
tree | abcf16c4d3adb3958f040b6f397517e62168ab28 /urpm | |
parent | 49bb4c6726dad1c181f5df2c46addafa5e68bff0 (diff) | |
download | urpmi-15472b91a64eae38e9bf23ab33300d562bf4c447.tar urpmi-15472b91a64eae38e9bf23ab33300d562bf4c447.tar.gz urpmi-15472b91a64eae38e9bf23ab33300d562bf4c447.tar.bz2 urpmi-15472b91a64eae38e9bf23ab33300d562bf4c447.tar.xz urpmi-15472b91a64eae38e9bf23ab33300d562bf4c447.zip |
fix parsing of "download complete" messages from aria2
Fixes bug #53749
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/download.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/download.pm b/urpm/download.pm index e67b1644..a0c93975 100644 --- a/urpm/download.pm +++ b/urpm/download.pm @@ -742,7 +742,7 @@ sub _parse_aria2_output { return; } } - if ($buf =~ m!Download\scomplete:\s\./!) { + if ($buf =~ m!Download\scomplete:\s/!) { propagate_sync_callback($options, 'end', $file); shift @$rel_files; delete $options->{is_retry}; |