Skip to content

Commit

Permalink
Fix wrong bracket in logging statement
Browse files Browse the repository at this point in the history
The 'sep' argument belongs to the 'paste' function, not to the 'logging'
function. Move the wrongly placed bracket to the right place (also to
prevent a warning being printed).

Signed-off-by: Thomas Bock <bockthom@cs.uni-saarland.de>
  • Loading branch information
bockthom committed Apr 15, 2023
1 parent e1579ca commit 50c68cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util-networks-covariates.R
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,7 @@ get.first.activity.data = function(range.data, activity.types = c("commits", "ma

for (missing.key in missing.keys) {
logging::logwarn(paste("The type", missing.key, "was configured but the RangeData did not contain any",
"activities of that type"), sep = " ")
"activities of that type", sep = " "))
activity.by.type[missing.key] = na.list
}

Expand Down

0 comments on commit 50c68cb

Please sign in to comment.