Skip to content

Commit 02ced80

Browse files
Merge pull request #6450 from Rdatatable/ci-lint-po-typo
errant ')' in msgfmt_linter
2 parents 560c6a2 + 0d37f61 commit 02ced80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/linters/po/msgfmt_linter.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ msgfmt_linter <- function(po_file) {
44
mo_tmp <- tempfile()
55
on.exit(unlink(mo_tmp))
66

7-
res = system2("msgfmt", c("--statistics", po_file, "-o", mo_tmp)), stdout=TRUE, stderr=TRUE)
7+
res = system2("msgfmt", c("--statistics", po_file, "-o", mo_tmp), stdout=TRUE, stderr=TRUE)
88
if (any(grepl("untranslated message|fuzzy translation", res))) {
99
cat(sprintf("In %s, found incomplete translations:\n%s\n", po_file, paste(res, collapse="\n")))
1010
stop("Please fix.")

0 commit comments

Comments
 (0)