diff options
| author | Philip Thiem <ptthiem@gmail.com> | 2014-05-17 11:15:44 -0500 |
|---|---|---|
| committer | Philip Thiem <ptthiem@gmail.com> | 2014-05-17 11:15:44 -0500 |
| commit | 4831eab98be118e1cb9d375dc738e4da5388d2eb (patch) | |
| tree | 882235bdc2cab1f143b548fe782e4e704a5e0a7b /setuptools/tests | |
| parent | a794d57f0e8813f9eedc373b0bf3464a329ffdb9 (diff) | |
| download | python-setuptools-bitbucket-4831eab98be118e1cb9d375dc738e4da5388d2eb.tar.gz | |
est_manifest_is_written_with_utf8_encoding should use the filelist's append, NOT filelist.files.append
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_sdist.py b/setuptools/tests/test_sdist.py index d2188035..9d2cc54f 100644 --- a/setuptools/tests/test_sdist.py +++ b/setuptools/tests/test_sdist.py @@ -135,7 +135,7 @@ class TestSdistTest(unittest.TestCase): # Add UTF-8 filename and write manifest with quiet(): mm.run() - mm.filelist.files.append(filename) + mm.filelist.append(filename) mm.write_manifest() manifest = open(mm.manifest, 'rbU') |
