]> git.pld-linux.org Git - packages/brltty.git/blob - brltty-python.patch
icu rebuild
[packages/brltty.git] / brltty-python.patch
1 diff -urNp -x '*.orig' brltty-6.1.org/Bindings/Python/brlapi.pyx brltty-6.1/Bindings/Python/brlapi.pyx
2 --- brltty-6.1.org/Bindings/Python/brlapi.pyx   2020-04-05 12:35:34.000000000 +0200
3 +++ brltty-6.1/Bindings/Python/brlapi.pyx       2021-03-02 22:36:22.870140488 +0100
4 @@ -652,7 +652,7 @@ cdef class Connection:
5                 if (type(dots) == unicode):
6                         dots = dots.encode('latin1')
7                 if (len(dots) < dispSize):
8 -                       dots = dots + b"".center(dispSize - len(dots), '\0')
9 +                       dots = dots + "".center(dispSize - len(dots), '\0')
10                 c_dots = dots
11                 c_udots = <unsigned char *>c_dots
12                 with nogil:
This page took 0.03225 seconds and 3 git commands to generate.