Skip to content

Commit 0ec2f7f

Browse files
committed
Fix make_lib.sh under python 3
Python 3 broke the `realpath` function due to missing arguments.
1 parent 898eb9c commit 0ec2f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VimUtils/make_lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# - custom built vims against OSX python
99

1010
function realpath() {
11-
echo $(python -c "import os; print os.path.realpath('$1')")
11+
echo $(python -c "import os; print(os.path.realpath('$1'))")
1212
}
1313

1414
function find_py_from_vim() {

0 commit comments

Comments
 (0)