From: intrigeri Date: Tue, 30 Dec 2008 22:10:12 +0000 (+0100) Subject: po: remove debug statements X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/cd62acfb4710ffd85ea1e2635541889083267f77 po: remove debug statements --- diff --git a/IkiWiki/Plugin/po.pm b/IkiWiki/Plugin/po.pm index d8a7de8eb..e25532a0a 100644 --- a/IkiWiki/Plugin/po.pm +++ b/IkiWiki/Plugin/po.pm @@ -338,7 +338,6 @@ sub renamepages() { #{{{ foreach my $rename (@torename) { next unless istranslatable($rename->{src}); my %otherpages=%{otherlanguages($rename->{src})}; - debug "bla".$rename->{src}; while (my ($lang, $otherpage) = each %otherpages) { push @{$torename}, { src => $otherpage, @@ -347,7 +346,6 @@ sub renamepages() { #{{{ destfile => $rename->{dest}.".".$lang.".po", required => 0, }; - debug "po(renamepages): pushed src=$otherpage, dest=".otherlanguage($rename->{dest}, $lang); } } } #}}}