Skip to content

Commit

Permalink
Merge #3238
Browse files Browse the repository at this point in the history
3238: maintainer: Escape module python in wrapper script r=KaiSzuttor a=fweik

Fixes #3237.

Description of changes:
 - Added quotes around the module path in python wrapper script.


Co-authored-by: Florian Weik <[email protected]>
  • Loading branch information
bors[bot] and fweik authored Oct 11, 2019
2 parents 9dc1e06 + f2ec866 commit 6dbcec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/pypresso.cmakein
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#

if test -n "$PYTHONPATH"; then
PYTHONPATH=@PYTHON_DIR@:$PYTHONPATH
PYTHONPATH="@PYTHON_DIR@:$PYTHONPATH"
else
PYTHONPATH=@PYTHON_DIR@
PYTHONPATH="@PYTHON_DIR@"
fi
export PYTHONPATH

Expand Down

0 comments on commit 6dbcec3

Please sign in to comment.