Hi, I think debian/py.test.sh on the source package contains the error at line 3.
> PYVERSION=`cut $0 -d '-' -f 2`
'cut' splits the data of the file $0, so it will split the source code.
I think the following code works fine
PYVERSION=`echo $0 | cut -d '-' -f 2`
--
Koichi Akabe
vbkaisetsu at {gmail.com}
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

