commit | 3308e802522d2ed1fbaac3c935af85fb444cc3c5 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri May 29 20:42:47 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Fri May 29 20:42:47 2009 +0000 |
tree | 4d19ae79bbdcdc7f9ed86e7d1594cfbf7f1adfa3 | |
parent | 23ddc0eae38eb3c23766eec49a1153b97d9b8556 [diff] |
#6139: fix typo of variable name.
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 @@ 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