diff options
author | Mandrake <mandrake@mandriva.com> | 2006-10-26 11:18:28 +0000 |
---|---|---|
committer | Mandrake <mandrake@mandriva.com> | 2006-10-26 11:18:28 +0000 |
commit | ce12f8dc142e491c1c2518af20db547b15cf54a0 (patch) | |
tree | a0297d0a036512c65a368d1717da1cb093caee33 /lib | |
parent | cee7f7283f7d9114ef4911a26b3bbcd31597788f (diff) | |
download | mga-youri-submit-ce12f8dc142e491c1c2518af20db547b15cf54a0.tar mga-youri-submit-ce12f8dc142e491c1c2518af20db547b15cf54a0.tar.gz mga-youri-submit-ce12f8dc142e491c1c2518af20db547b15cf54a0.tar.bz2 mga-youri-submit-ce12f8dc142e491c1c2518af20db547b15cf54a0.tar.xz mga-youri-submit-ce12f8dc142e491c1c2518af20db547b15cf54a0.zip |
fix double .
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Youri/Submit/Action/Mail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Youri/Submit/Action/Mail.pm b/lib/Youri/Submit/Action/Mail.pm index 5df20e6..6d9d0d8 100644 --- a/lib/Youri/Submit/Action/Mail.pm +++ b/lib/Youri/Submit/Action/Mail.pm @@ -102,7 +102,7 @@ sub get_subject { my $section = $repository->_get_section($package, $target, $define); return ($self->{_prefix} ? '[' . $self->{_prefix} . '] ' : '' ) . - . "$target " . ($section ? "$section " : '' ) . + "$target " . ($section ? "$section " : '' ) . $package->as_formated_string('%{name}-%{version}-%{release}'); } |