summaryrefslogtreecommitdiffstats
path: root/Lib/mimify.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-10 00:22:33 (GMT)
committerEric S. Raymond <esr@thyrsus.com>2001-02-10 00:22:33 (GMT)
commit6e025bcde84ec358734a116cefcc4acc357ee0b1 (patch)
tree0e9d1e6ec181e63e8a88d7af05e2e9e49f2ca294 /Lib/mimify.py
parentc8c6aa201f03393ada787a1bde88cd2092d2361c (diff)
downloadcpython-6e025bcde84ec358734a116cefcc4acc357ee0b1.zip
cpython-6e025bcde84ec358734a116cefcc4acc357ee0b1.tar.gz
cpython-6e025bcde84ec358734a116cefcc4acc357ee0b1.tar.bz2
String method cleanup.
Diffstat (limited to 'Lib/mimify.py')
-rwxr-xr-xLib/mimify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/mimify.py b/Lib/mimify.py
index 64e988b..c856910 100755
--- a/Lib/mimify.py
+++ b/Lib/mimify.py
@@ -110,7 +110,7 @@ def mime_decode_header(line):
break
match = res.group(1)
# convert underscores to spaces (before =XX conversion!)
- match = ' '.join(string.split(match, '_'))
+ match = ' '.join(match.split('_'))
newline = newline + line[pos:res.start(0)] + mime_decode(match)
pos = res.end(0)
return newline + line[pos:]