From eaa3b2e6bcfdf1611bdc30c5a2c21edbfe7b40a2 Mon Sep 17 00:00:00 2001 From: full-Strix Date: Tue, 26 Mar 2024 14:21:52 +0100 Subject: [PATCH] Fix logger.subinfo() call in trk2dictionary.pyx --- commit/trk2dictionary/trk2dictionary.pyx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commit/trk2dictionary/trk2dictionary.pyx b/commit/trk2dictionary/trk2dictionary.pyx index ceb995a..05156df 100755 --- a/commit/trk2dictionary/trk2dictionary.pyx +++ b/commit/trk2dictionary/trk2dictionary.pyx @@ -532,7 +532,8 @@ cpdef run( filename_tractogram=None, path_out=None, filename_peaks=None, filenam return None # Concatenate files together - logger.subinfo( '\nSaving dictionaries', indent_lvl=1, indent_char='-', with_progress=True ) + logger.subinfo('') + logger.subinfo( 'Saving dictionaries', indent_lvl=1, indent_char='-', with_progress=True ) cdef int discarded = 0 with ProgressBar(disable=verbose<3, hide_on_exit=True, subinfo=True) as pbar: for j in range(n_threads-1):