summaryrefslogtreecommitdiffstats
path: root/Lib/packmail.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/packmail.py')
-rw-r--r--Lib/packmail.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/packmail.py b/Lib/packmail.py
index 13b1bdc..4541c51 100644
--- a/Lib/packmail.py
+++ b/Lib/packmail.py
@@ -21,7 +21,7 @@ def help():
def pack(outfp, file, name):
fp = open(file, 'r')
outfp.write('echo ' + name + '\n')
- outfp.write('sed "s/^X//" >' + name + ' <<"!"\n')
+ outfp.write('sed "s/^X//" >"' + name + '" <<"!"\n')
while 1:
line = fp.readline()
if not line: break