Skip to content

Commit e16c724

Browse files
Merge pull request #65 from MichaelChirico/patch-1
Fix bug in glue string (missing '}')
2 parents 5c97f56 + d7e51e6 commit e16c724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/detect_resource_inconsistencies.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ detect_resource_inconsistencies.eventlog <- function(eventlog, filter_condition
3030

3131
if(any(!(lifecycle_labels(eventlog) %in% allowed_lifecycles))) {
3232
stop(glue::glue("Lifecycle not conform standard lifecycle model. \nAllowed lifecycles: {str_c(allowed_lifecycles, collapse =', ')}.
33-
\nNon-standard lifecycles: {str_subset(lifecycle_labels(eventlog), allowed_lifecycles, negate = TRUE)
33+
\nNon-standard lifecycles: {str_subset(lifecycle_labels(eventlog), allowed_lifecycles, negate = TRUE)}
3434
\nTry function 'standardize_lifecycle' to fix."))
3535
}
3636
# Store the number of cases for output

0 commit comments

Comments
 (0)