Skip to content
Snippets Groups Projects
Commit 7e72d699 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Fix to callfsl - python 2/3 compatibility

parent 52be3354
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ def callFSL(*args):
log.debug('callfsl: {}'.format(' '.join(args)))
result = sp.check_output(args)
result = sp.check_output(args).decode('utf-8')
log.debug('result: {}'.format(result))
......
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