mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
release: call python3 instead of python
Debian does not install /usr/bin/python by default any more.
This commit is contained in:
parent
8e721f12ba
commit
40b75f50be
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ else
|
|||
fi
|
||||
|
||||
echo -n "Checking that python bindings version is $VERSION... "
|
||||
py_version=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
|
||||
py_version=`python3 -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
|
||||
if [ "$py_version" = "$VERSION" ]
|
||||
then
|
||||
echo Yes.
|
||||
|
|
Loading…
Reference in a new issue