Skip to content

Commit

Permalink
missing newline after verbose message (#6666)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelChirico authored Dec 20, 2024
1 parent a9cd0bf commit 4a2474b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/data.table.R
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@ replace_dot_alias = function(e) {
if (!len_common_names) stopf("Attempting to do natural join but no common columns in provided tables")
if (verbose) {
which_cols_msg = if (len_common_names == length(x)) {
catf("Joining but 'x' has no key, natural join using all 'x' columns")
catf("Joining but 'x' has no key, natural join using all 'x' columns\n")
} else {
catf("Joining but 'x' has no key, natural join using: %s", brackify(common_names))
catf("Joining but 'x' has no key, natural join using: %s\n", brackify(common_names))
}
}
on = common_names
Expand Down

0 comments on commit 4a2474b

Please sign in to comment.