summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-10-05 09:09:45 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-10-05 09:09:45 +0000
commit15472b91a64eae38e9bf23ab33300d562bf4c447 (patch)
treeabcf16c4d3adb3958f040b6f397517e62168ab28 /urpm/download.pm
parent49bb4c6726dad1c181f5df2c46addafa5e68bff0 (diff)
downloadurpmi-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/download.pm')
-rw-r--r--urpm/download.pm2
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};