Skip to content

Commit

Permalink
Update verbose.R (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbarbone committed Nov 27, 2023
1 parent 5410c44 commit fd06667
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/verbose.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ verbose_message <- function(
con <- file()
on.exit(close(con))
cat(..., file = con)
paste(.label, readLines(con, warn = FALSE), collapse = "\n")
paste0(.label, readLines(con, warn = FALSE), collapse = "\n")
} else {
.makeMessage(.label, ...)
}
Expand Down

0 comments on commit fd06667

Please sign in to comment.