Skip to content

Commit 16453c3

Browse files
committed
Fix bug
1 parent 864b58b commit 16453c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

turbine/code/py/turbine_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def json_get(J, path):
105105
def json_join(J1, J2):
106106
J1 = json.loads(J1)
107107
J2 = json.loads(J2)
108-
return str(J1 | J2)
108+
return json.dumps(J1 | J2)
109109

110110

111111
### MPI4PY STUFF

0 commit comments

Comments
 (0)