Skip to content

Commit 97e27e9

Browse files
committed
Add fix
1 parent 3a33513 commit 97e27e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

omv/engines/jneuroml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_environment():
1616
if "JNML_HOME" in os.environ:
1717
jnmlhome = os.environ["JNML_HOME"]
1818
elif shutil.which(JNeuroMLEngine.e_name) is not None:
19-
jnmlhome = Path(shutil.which(JNeuroMLEngine.e_name)).parent
19+
jnmlhome = str(Path(shutil.which(JNeuroMLEngine.e_name)).parent)
2020
else:
2121
jnmlhome = ""
2222

0 commit comments

Comments
 (0)