Skip to content

Commit 9cb2116

Browse files
Trotttargos
authored andcommitted
tools: fix formatting of warning message in update-authors.js
The email already has `<` and `>` surrounding it so adding it results in a misformatted message. PR-URL: #40600 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Voltrex <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 46ec5ac commit 9cb2116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/update-authors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ rl.on('line', (line) => {
121121
const duplicate = previousAuthors.get(author);
122122
if (duplicate && !duplicate.includes(email)) {
123123
console.warn('Author name already in AUTHORS file. Possible duplicate:');
124-
console.warn(` ${author} <${email}>`);
124+
console.warn(` ${author} ${email}`);
125125
}
126126
});
127127

0 commit comments

Comments
 (0)