Package | Bug | Title |
---|
UnicodeDecodeError | Python 3.9.2: /usr/bin/python3 Tue Jun 6 19:21:29 2023 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/srv/udd.debian.org/udd/web/cgi-bin/wnpp_packaged.cgi in <module> |
65 cur = conn.cursor() |
66 cur.execute(query) |
=> 67 rows = cur.fetchall() |
68 cur.close() |
69 conn.close() |
rows undefined, cur = <cursor object at 0x7f99296fdc70; closed: 0>, cur.fetchall = <built-in method fetchall of psycopg2.extensions.cursor object> |
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 64: ordinal not in range(128)
args =
('ascii', b'ITP: gosa-plugins-pwreset -- Password Management Add-On for GOsa\xc3\x82\xc2\xb2', 64, 65, 'ordinal not in range(128)')
encoding =
'ascii'
end =
65
object =
b'ITP: gosa-plugins-pwreset -- Password Management Add-On for GOsa\xc3\x82\xc2\xb2'
reason =
'ordinal not in range(128)'
start =
64
with_traceback =
<built-in method with_traceback of UnicodeDecodeError object>