Skip to content
Snippets Groups Projects
Commit 3643e93c authored by Fidel Alfaro Almagro's avatar Fidel Alfaro Almagro :speech_balloon:
Browse files

Fixed typo

parent ed067fb2
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ from fsl import wrappers
def run_command(logger, command, **kwargs):
try:
logger.info('COMMAND TO RUN: \t' + command.strip())
job_output = check_output(command,shell=True,**kawargs).decode('UTF-8')
job_output = check_output(command,shell=True,**kwargs).decode('UTF-8')
logger.info('COMMAND OUTPUT: \t' + job_output.strip())
except Exception as e:
logger.error('Exception raised during: \t' + command.strip())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment