Skip to content

Commit b338e4f

Browse files
committed
make write_workflow_resources python 2 compatible (take 2)
1 parent 7fbd869 commit b338e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/engine/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ def write_workflow_resources(graph, filename=None):
13361336
big_dict['params'] += [params] * nsamples
13371337

13381338
with open(filename, 'wt') as rsf:
1339-
json.dump(big_dict, rsf)
1339+
json.dump(big_dict, rsf, ensure_ascii=False)
13401340

13411341
return filename
13421342

0 commit comments

Comments
 (0)