summaryrefslogtreecommitdiffstats
path: root/credits2po
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-02-17 14:06:25 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-02-17 14:06:25 +0000
commit5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832 (patch)
treef046d58d33fdcb1fa3df99daa019e06e78549582 /credits2po
parent49b80982dbefc80a26c6851f6c95000e526182ae (diff)
downloadcontrol-center-5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832.tar
control-center-5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832.tar.gz
control-center-5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832.tar.bz2
control-center-5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832.tar.xz
control-center-5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832.zip
fix CREDITS parsing (do not ignore what's left after second comma)
Diffstat (limited to 'credits2po')
-rwxr-xr-xcredits2po2
1 files changed, 1 insertions, 1 deletions
diff --git a/credits2po b/credits2po
index b1b65d49..74e662cf 100755
--- a/credits2po
+++ b/credits2po
@@ -17,7 +17,7 @@ use common;
),
(map {
if (/^\s*\* (.*)$/) {
- my ($contributor, $descr) = split(', ', $1);
+ my ($contributor, $descr) = split(', ', $1, 2);
#if (/^\s*\* (.*), (.*)/) {
chomp($descr);
$descr =~ s/(["@$])/\\$1/g;