diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-17 14:06:25 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-02-17 14:06:25 +0000 |
commit | 5d5e12a52a6a640a00d1b44d1fbca3e52b5a1832 (patch) | |
tree | f046d58d33fdcb1fa3df99daa019e06e78549582 /credits2po | |
parent | 49b80982dbefc80a26c6851f6c95000e526182ae (diff) | |
download | control-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-x | credits2po | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |