diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-02-21 14:23:38 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-02-21 14:23:38 (GMT) |
commit | 2d6c13e733c0850723a30254eb8b89fd8515c4f8 (patch) | |
tree | 8f038fd9792c39be11ea90a8f7951efecbbc1f29 /Lib/distutils/command/sdist.py | |
parent | 8a803dd94b2c1b080d7b02afe774445c2710e68b (diff) | |
download | cpython-2d6c13e733c0850723a30254eb8b89fd8515c4f8.zip cpython-2d6c13e733c0850723a30254eb8b89fd8515c4f8.tar.gz cpython-2d6c13e733c0850723a30254eb8b89fd8515c4f8.tar.bz2 |
Close manifest file.
This change doesn't make any difference to CPython, but is a necessary fix for Jython.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r-- | Lib/distutils/command/sdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 3dfe6f2..a06b195 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -383,6 +383,7 @@ class sdist (Command): if line[-1] == '\n': line = line[0:-1] self.filelist.append(line) + manifest.close() # read_manifest () |