From: Georg Brandl Date: Fri, 29 May 2009 20:42:47 +0000 (+0000) Subject: #6139: fix typo of variable name. X-Git-Tag: v3.1rc1~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3308e802522d2ed1fbaac3c935af85fb444cc3c5;p=python #6139: fix typo of variable name. --- diff --git a/Lib/email/base64mime.py b/Lib/email/base64mime.py index 6db007dc19..5131f8e13e 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