mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
#6139: fix typo of variable name.
This commit is contained in:
parent
23ddc0eae3
commit
3308e80252
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ def decode(string):
|
|||
elif isinstance(string, str):
|
||||
return a2b_base64(string.encode('raw-unicode-escape'))
|
||||
else:
|
||||
return a2b_base64(s)
|
||||
return a2b_base64(string)
|
||||
|
||||
|
||||
# For convenience and backwards compatibility w/ standard base64 module
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue