summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-01 00:15:50 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-01 00:15:50 +0000
commit11cbbdfd2578967efc8207586d44ccf9d5787828 (patch)
treec4f7328bc26115f45cbab9fc55da092f94aebcf3
parent4ce623f393c2c1fa02fd490a1068c319dc6fea5b (diff)
downloadurpmi-11cbbdfd2578967efc8207586d44ccf9d5787828.tar
urpmi-11cbbdfd2578967efc8207586d44ccf9d5787828.tar.gz
urpmi-11cbbdfd2578967efc8207586d44ccf9d5787828.tar.bz2
urpmi-11cbbdfd2578967efc8207586d44ccf9d5787828.tar.xz
urpmi-11cbbdfd2578967efc8207586d44ccf9d5787828.zip
(new) fix N() usage thus fixing extracting translatable strings
thus fixing build (dudf devs should be shot in the head. twice)
-rw-r--r--urpm/dudf.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/dudf.pm b/urpm/dudf.pm
index 7b04a2a6..7057f98e 100644
--- a/urpm/dudf.pm
+++ b/urpm/dudf.pm
@@ -192,7 +192,7 @@ sub new {
if (! -f $self->{log_file})
{
output_safe($self->{log_file},
- N("# Here are logs of your DUDF uploads.\n# Line format is : <date time of generation> <uid>\n# You can use uids to see the content of your uploads at this url :\n# $base_url"));
+ N("# Here are logs of your DUDF uploads.\n# Line format is : <date time of generation> <uid>\n# You can use uids to see the content of your uploads at this url :\n# %s"), $base_url);
}
my $ug = new Data::UUID;
$self->{dudf_uid} = $ug->to_string($ug->create_str);