diff options
author | Georg Brandl <georg@python.org> | 2009-05-29 20:42:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-29 20:42:47 (GMT) |
commit | 3308e802522d2ed1fbaac3c935af85fb444cc3c5 (patch) | |
tree | 4d19ae79bbdcdc7f9ed86e7d1594cfbf7f1adfa3 | |
parent | 23ddc0eae38eb3c23766eec49a1153b97d9b8556 (diff) | |
download | cpython-3308e802522d2ed1fbaac3c935af85fb444cc3c5.zip cpython-3308e802522d2ed1fbaac3c935af85fb444cc3c5.tar.gz cpython-3308e802522d2ed1fbaac3c935af85fb444cc3c5.tar.bz2 |
#6139: fix typo of variable name.
-rw-r--r-- | Lib/email/base64mime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/base64mime.py b/Lib/email/base64mime.py index 6db007d..5131f8e 100644 --- a/Lib/email/base64mime.py +++ b/Lib/email/base64mime.py @@ -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 |