aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
authorStefan H. Holek <stefan@epy.co.at>2012-11-10 18:45:20 +0100
committerStefan H. Holek <stefan@epy.co.at>2012-11-10 18:45:20 +0100
commit91379d9c17d2ac432f64e1952e2b3d47c83eedcc (patch)
treec886f379940f3af023036534f46ff76c7d80f96d /setuptools/command/sdist.py
parentb7c5bd34a32f20e54100fd88ede20c136571b1cf (diff)
downloadexternal_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.tar.gz
external_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.tar.bz2
external_python_setuptools-91379d9c17d2ac432f64e1952e2b3d47c83eedcc.zip
Add comments.
--HG-- branch : distribute extra : rebase_source : 2d4ac9964b247122715c8296158c97d1f11adf89
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-xsetuptools/command/sdist.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index 7a6d2b7d..2fa3771a 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -282,6 +282,7 @@ class sdist(_sdist):
log.info("reading manifest file '%s'", self.manifest)
manifest = open(self.manifest, 'rbU')
for line in manifest:
+ # The manifest must contain UTF-8. See #303.
if sys.version_info >= (3,):
try:
line = line.decode('UTF-8')