]> granicus.if.org Git - python/commitdiff
#6139: fix typo of variable name.
authorGeorg Brandl <georg@python.org>
Fri, 29 May 2009 20:42:47 +0000 (20:42 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 29 May 2009 20:42:47 +0000 (20:42 +0000)
Lib/email/base64mime.py

index 6db007dc1978bd329bfe05cdbbc4efe564be0ede..5131f8e13e8d67d3cec46519822357a1cc19dc10 100644 (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