diff options
-rw-r--r-- | Rpmdrake/pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 57d9c355..1eb84b27 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -170,7 +170,7 @@ sub extract_header { } elsif ($xml_info eq 'changelog') { add2hash($pkg, { changelog => $chg_prepro->(join("\n", map { - "* " . localtime2changelog($_->{time}) . " $_->{name}\n$_->{text}\n\n"; + "* " . localtime2changelog($_->{time}) . " $_->{name}\n\n$_->{text}\n"; } @{$xml_info_pkgs{$name}{changelogs}})) }); } |