mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
devel/release-checks.sh: made python version check work with python 3
This trivial change consists of just putting print() argument in parentheses.
This commit is contained in:
parent
23d86773b9
commit
6d5c7b3ca5
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo -n "Checking that python bindings version is $VERSION... "
|
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=`python -c "with open('$PV_FILE') as vf: exec(vf.read()); print(__VERSION__)"`
|
||||||
if [ "$py_version" = "$VERSION" ]
|
if [ "$py_version" = "$VERSION" ]
|
||||||
then
|
then
|
||||||
echo Yes.
|
echo Yes.
|
||||||
|
|
Loading…
Reference in a new issue