Skip to content

Commit e371e55

Browse files
Update Modules/binascii.c
Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com>
1 parent 3965c1b commit e371e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/binascii.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, int padded,
10091009
assert(pads == 0);
10101010
}
10111011
for (; pads; pads--) {
1012-
*ascii_data++ = BASE32_PAD;
1012+
*ascii_data++ = BASE64_PAD;
10131013
}
10141014

10151015
if (wrapcol) {

0 commit comments

Comments
 (0)