aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-02-08 17:11:42 +0000
committerThierry Vignaud <tv@mandriva.org>2008-02-08 17:11:42 +0000
commit2f984a318051efd313346a9c51e493120c3836ea (patch)
treecf39c0ea598a5c5917f49126b0cb3c2675f1d44c /Rpmdrake
parentfdc86c79c07a9e75054cf242dced16ebb409e3af (diff)
downloadrpmdrake-2f984a318051efd313346a9c51e493120c3836ea.tar
rpmdrake-2f984a318051efd313346a9c51e493120c3836ea.tar.gz
rpmdrake-2f984a318051efd313346a9c51e493120c3836ea.tar.bz2
rpmdrake-2f984a318051efd313346a9c51e493120c3836ea.tar.xz
rpmdrake-2f984a318051efd313346a9c51e493120c3836ea.zip
(format_pkg_simplifiedinfo) separate version and release by '-' in details
Diffstat (limited to 'Rpmdrake')
-rw-r--r--Rpmdrake/gui.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index 2b8f8cee..b184b969 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -138,7 +138,7 @@ sub format_pkg_simplifiedinfo {
push @$s, [ gtkadd(gtkshow(my $exp0 = Gtk2::Expander->new(format_field(N("Details:")))),
gtknew('TextView', text => ugtk2::markup_to_TextView_format(
$spacing . join("\n$spacing",
- format_field(N("Version: ")) . $version . $release,
+ format_field(N("Version: ")) . $version . '-' . $release,
($upkg->flag_installed ?
format_field(N("Currently installed version: ")) . eval { find_installed_version($upkg) }