aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip Thiem <ptthiem@gmail.com>2014-05-17 11:15:44 -0500
committerPhilip Thiem <ptthiem@gmail.com>2014-05-17 11:15:44 -0500
commit999a55b7526f857af17d3c85579c7d9380c5baa8 (patch)
tree5158c3d41092d45985fa86245944bad4be44e901
parentc5d760b060efa63e8de92bc5d1b1e56700ff16e6 (diff)
downloadexternal_python_setuptools-999a55b7526f857af17d3c85579c7d9380c5baa8.tar.gz
external_python_setuptools-999a55b7526f857af17d3c85579c7d9380c5baa8.tar.bz2
external_python_setuptools-999a55b7526f857af17d3c85579c7d9380c5baa8.zip
est_manifest_is_written_with_utf8_encoding should use the filelist's append, NOT filelist.files.append
--HG-- extra : rebase_source : cdf0df0a11b96a60c29c10483579e6e043a7fcd1
-rw-r--r--setuptools/tests/test_sdist.py2
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')