diff options
author | Greg Ward <gward@python.net> | 2000-09-18 00:41:10 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-18 00:41:10 (GMT) |
commit | 9082cdd009cc5c4945cd1200cc58f6bf69eb2817 (patch) | |
tree | 4819b6f29c226b752f69e68c9f7eb5aae78220e2 | |
parent | 5316ef4bbb5c214fdccb83c93dcafb8bbf4d754f (diff) | |
download | cpython-9082cdd009cc5c4945cd1200cc58f6bf69eb2817.zip cpython-9082cdd009cc5c4945cd1200cc58f6bf69eb2817.tar.gz cpython-9082cdd009cc5c4945cd1200cc58f6bf69eb2817.tar.bz2 |
Catch up to recent changes in TextFile (spotted by Bastian Kleineidam).
-rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 6de703e..9b9f606 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -332,7 +332,7 @@ class sdist (Command): join_lines=1, lstrip_ws=1, rstrip_ws=1, - collapse_ws=1) + collapse_join=1) while 1: line = template.readline() |