]> git.pld-linux.org Git - packages/brltty.git/blame - brltty-python.patch
- release 6 (by relup.sh)
[packages/brltty.git] / brltty-python.patch
CommitLineData
03476ceb
JR
1diff -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:
9c5b0c32
MK
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
03476ceb 12 with nogil:
This page took 0.099876 seconds and 4 git commands to generate.