From cf2cb97ab9dcb6b4245e0b4784f916a1c50c5156 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Tue, 20 Jun 2006 21:21:08 +0000 Subject: Fix ``ftp://`` directory listing URLs from causing a crash when used in the "Home page" or "Download URL" slots on PyPI. (merged from the trunk) --HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4047051 --- setuptools/package_index.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/package_index.py') diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 2760dc8d..d13bfc0f 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -162,7 +162,7 @@ class PackageIndex(Environment): self.fetched_urls[url] = self.fetched_urls[f.url] = True - if 'html' not in f.headers['content-type'].lower(): + if 'html' not in f.headers.get('content-type', '').lower(): f.close() # not html, we can't process it return -- cgit v1.2.3