Skip to content

Commit 0d37f61

Browse files
errant ')'
1 parent 560c6a2 commit 0d37f61

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)