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}
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

