diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 22:05:45 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 22:05:45 +0000 |
commit | 5942fb52d138b09be0ada1784dabaa6838d7afae (patch) | |
tree | e9c07c0c03d1616de6cd0840d929c0fe8749380d /urpm.pm | |
parent | dc8ebc43bef9fdae9e0674a767aabc31600285be (diff) | |
download | urpmi-5942fb52d138b09be0ada1784dabaa6838d7afae.tar urpmi-5942fb52d138b09be0ada1784dabaa6838d7afae.tar.gz urpmi-5942fb52d138b09be0ada1784dabaa6838d7afae.tar.bz2 urpmi-5942fb52d138b09be0ada1784dabaa6838d7afae.tar.xz urpmi-5942fb52d138b09be0ada1784dabaa6838d7afae.zip |
(get_updates_description) descriptions files really come with
"Update:" field today; let's be more open
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -246,7 +246,7 @@ sub get_updates_description { $section = 'pkg'; next; }; - /^Updated: (.+)/ && $section eq 'pkg' and $cur->{updated} = $1; + /^Updated?: (.+)/ && $section eq 'pkg' and $cur->{updated} = $1; /^Importance: (.+)/ && $section eq 'pkg' and $cur->{importance} = $1; /^(ID|URL): +(.+)/ && $section eq 'pkg' and do { $cur->{$1} = $2; next }; /^%(pre|description)/ and do { $section = $1; next }; |