diff options
author | Guido van Rossum <guido@python.org> | 1998-04-28 16:03:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-28 16:03:03 (GMT) |
commit | 9c93a69335117c7e54c8962d3adc7e17a695f1b0 (patch) | |
tree | 6cd14d9b72a95ea09b991f0535a8b1563db455fa /Lib | |
parent | 50cc04ee032f80133bef406eb564c6371a2f1d06 (diff) | |
download | cpython-9c93a69335117c7e54c8962d3adc7e17a695f1b0.zip cpython-9c93a69335117c7e54c8962d3adc7e17a695f1b0.tar.gz cpython-9c93a69335117c7e54c8962d3adc7e17a695f1b0.tar.bz2 |
Put quotes around the filename, so spaces in filenames work.
(Jack)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-old/packmail.py | 2 | ||||
-rw-r--r-- | Lib/packmail.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/lib-old/packmail.py b/Lib/lib-old/packmail.py index 13b1bdc..4541c51 100644 --- a/Lib/lib-old/packmail.py +++ b/Lib/lib-old/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 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 |