Skip to content

Commit

Permalink
Fixed bytes/str typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lowell80 committed Aug 22, 2022
1 parent a49f0e0 commit 3638955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/b64.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def stream(self, records):
def fct(s):
# Fix padding
if self.fix_padding:
s += b"==="
s += "==="
s = b64decode(s)
return s.decode(self.encoding, errors=errors)
else:
Expand Down

0 comments on commit 3638955

Please sign in to comment.