Commit 422682d8 authored by Stefan H. Holek's avatar Stefan H. Holek

Don't re-use FileList global name in egg_info.py.

--HG--
branch : distribute
extra : rebase_source : ac180d4a23ab4fc03c243aa92dd8e6bc42bdabeb
parent 21ead63d
...@@ -9,7 +9,7 @@ from distutils.errors import * ...@@ -9,7 +9,7 @@ from distutils.errors import *
from distutils import log from distutils import log
from setuptools.command.sdist import sdist from setuptools.command.sdist import sdist
from distutils.util import convert_path from distutils.util import convert_path
from distutils.filelist import FileList from distutils.filelist import FileList as _FileList
from pkg_resources import parse_requirements, safe_name, parse_version, \ from pkg_resources import parse_requirements, safe_name, parse_version, \
safe_version, yield_lines, EntryPoint, iter_entry_points, to_filename safe_version, yield_lines, EntryPoint, iter_entry_points, to_filename
from sdist import walk_revctrl from sdist import walk_revctrl
...@@ -274,7 +274,7 @@ class egg_info(Command): ...@@ -274,7 +274,7 @@ class egg_info(Command):
self.broken_egg_info = self.egg_info self.broken_egg_info = self.egg_info
self.egg_info = bei # make it work for now self.egg_info = bei # make it work for now
class FileList(FileList): class FileList(_FileList):
"""File list that accepts only existing, platform-independent paths""" """File list that accepts only existing, platform-independent paths"""
def append(self, item): def append(self, item):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment