Commit 0566d97d authored by Georg Brandl's avatar Georg Brandl

#6139: fix typo of variable name.

parent 62a9efc6
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment