From 50c68cb60114b49c32dc5be15014745cb8d42ded Mon Sep 17 00:00:00 2001 From: Thomas Bock Date: Sat, 15 Apr 2023 17:06:35 +0200 Subject: [PATCH] Fix wrong bracket in logging statement 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 --- util-networks-covariates.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-networks-covariates.R b/util-networks-covariates.R index 88daa050..9d560fed 100644 --- a/util-networks-covariates.R +++ b/util-networks-covariates.R @@ -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 }