Skip to content

Commit

Permalink
wrong ')' placement (#6506)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Sep 18, 2024
1 parent 6ff4af6 commit d7e95d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/linters/po/msgfmt_linter.R
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ msgfmt_linter <- function(po_file) {

unmo_tmp = tempfile()
unmo_ref = tempfile()
on.exit(unlink(c(unmo_tmp, unmo_ref), add=TRUE))
on.exit(unlink(c(unmo_tmp, unmo_ref)), add=TRUE)
system2("msgunfmt", c(mo_tmp, "-o", unmo_tmp))
system2("msgunfmt", c(mo_ref, "-o", unmo_ref))
cat("Here are the observed differences after converting back to .po:\n\n")
Expand Down

0 comments on commit d7e95d1

Please sign in to comment.