Skip to content

Commit

Permalink
Fix logger error (#891)
Browse files Browse the repository at this point in the history
Fix logger error.
  • Loading branch information
tsalo authored Nov 26, 2024
1 parent 7ce34e5 commit c50e4d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qsiprep/interfaces/dsi_studio.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class DSIStudioGQIReconstruction(CommandLine):

def _list_outputs(self):
outputs = self.output_spec().get()
config.loggers.interface.info('current dir', os.getcwd())
config.loggers.interface.info(f'current dir: {os.getcwd()}')
srcname = os.path.split(self.inputs.input_src_file)[-1]
config.loggers.interface.info(f'input src {self.inputs.input_src_file}')
config.loggers.interface.info(f'split src name {srcname}')
Expand Down

0 comments on commit c50e4d9

Please sign in to comment.