Skip to content

Commit

Permalink
Remove bad \n in message.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomazErjavec committed Sep 1, 2023
1 parent a785b30 commit 75efc86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/conllu2tei.pl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ sub conllu2tei {
if ($feats and $feats ne '_') {$element =~ s|>| msd=\"$feats\">|}
if ($tag eq 'w') {
if ($lemma eq '_') {
print STDERR "WARN: changing empty lemma to $token for\n$line\n";
print STDERR "WARN: changing empty lemma to $token for $line\n";
$lemma = $token
}
$element =~ s|>| lemma=\"$lemma\">|
Expand Down

0 comments on commit 75efc86

Please sign in to comment.