diff options
author | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 21:44:40 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2007-08-10 21:44:40 +0000 |
commit | e19e9113fba7a5ace59694c404b636e211b08977 (patch) | |
tree | 61f76135bc868ebfe0fdaa5944133ea6bb315337 /urpm.pm | |
parent | e7e70f6b19a926ff52fc89df07bc7667da8694f7 (diff) | |
download | urpmi-e19e9113fba7a5ace59694c404b636e211b08977.tar urpmi-e19e9113fba7a5ace59694c404b636e211b08977.tar.gz urpmi-e19e9113fba7a5ace59694c404b636e211b08977.tar.bz2 urpmi-e19e9113fba7a5ace59694c404b636e211b08977.tar.xz urpmi-e19e9113fba7a5ace59694c404b636e211b08977.zip |
(get_updates_description) further factorize
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -249,8 +249,7 @@ sub get_updates_description { /^Updated: (.+)/ && $section eq 'pkg' and $cur->{updated} = $1; /^Importance: (.+)/ && $section eq 'pkg' and $cur->{importance} = $1; /^%(pre|description)/ and do { $section = $1; next }; - $section eq 'pre' and $cur->{pre} .= $_; - $section eq 'description' and $cur->{description} .= $_; + $section =~ /^(pre|description)\z/ and $cur->{$1} .= $_; } } \%update_descr; |