mirror of https://github.com/python/cpython
#6139: fix typo of variable name.
This commit is contained in:
parent
23ddc0eae3
commit
3308e80252
|
@ -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…
Reference in New Issue