#6139: fix typo of variable name.

This commit is contained in:
Georg Brandl 2009-05-29 20:42:47 +00:00
parent 23ddc0eae3
commit 3308e80252
1 changed files with 1 additions and 1 deletions

View File

@ -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