Skip to content

Commit

Permalink
Fix logger.subinfo() call in trk2dictionary.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
fullbat committed Mar 26, 2024
1 parent 757c55c commit eaa3b2e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commit/trk2dictionary/trk2dictionary.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit eaa3b2e

Please sign in to comment.