Skip to content

Commit ceac9a6

Browse files
committed
Fixed error message that was missing a newline.
1 parent 3b074a6 commit ceac9a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regnum2phyx/regnum2phyx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ dump.forEach((entry, index) => {
217217
// Make sure we don't have multiple phyloreferences with the same label, since
218218
// we name the file after the phyloreference being produced.
219219
if (has(phyxProduced, phylorefLabel)) {
220-
process.stderr.write(`Duplicate phyloreference label '${phylorefLabel}', skipping.`);
220+
process.stderr.write(`Duplicate phyloreference label '${phylorefLabel}', skipping.\n`);
221221
countErrors += 1;
222222
return;
223223
}

0 commit comments

Comments
 (0)