]> git.pld-linux.org Git - packages/brltty.git/blob - brltty-python.patch
automatic change: use py_build/py_install macros
[packages/brltty.git] / brltty-python.patch
1 --- brltty-4.5/Bindings/Python/brlapi.pyx       2013-06-20 07:32:09.000000000 +0000
2 +++ brltty-4.5/Bindings/Python/brlapi.pyx       2013-06-20 07:32:52.064634045 +0000
3 @@ -497,7 +497,7 @@
4                 if (type(dots) == unicode):
5                         dots = dots.encode('latin1')
6                 if (len(dots) < dispSize):
7 -                       dots = dots + b"".center(dispSize - len(dots), '\0')
8 +                       dots = dots + "".center(dispSize - len(dots), '\0')
9                 c_dots = dots
10                 c_udots = <unsigned char *>c_dots
11                 c_brlapi.Py_BEGIN_ALLOW_THREADS
This page took 0.221045 seconds and 3 git commands to generate.