diff options
author | Lennart Regebro <regebro@gmail.com> | 2009-09-22 17:25:53 +0200 |
---|---|---|
committer | Lennart Regebro <regebro@gmail.com> | 2009-09-22 17:25:53 +0200 |
commit | 7596dc0cf93965df85e36dcbca683270f5e9ded2 (patch) | |
tree | 243c8b0f84fff8d7076286cc47e472050b903660 /setuptools/dist.py | |
parent | bec82b20d18cb0e81d305015307584abaa2b69bf (diff) | |
download | external_python_setuptools-7596dc0cf93965df85e36dcbca683270f5e9ded2.tar.gz external_python_setuptools-7596dc0cf93965df85e36dcbca683270f5e9ded2.tar.bz2 external_python_setuptools-7596dc0cf93965df85e36dcbca683270f5e9ded2.zip |
Name changes of the parameters.
--HG--
branch : distribute
extra : rebase_source : fc921b526cda13b02a4bb0215f91ee04d03dca57
Diffstat (limited to 'setuptools/dist.py')
-rw-r--r-- | setuptools/dist.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index 531c94f4..2246ab96 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -255,11 +255,11 @@ class Distribution(_Distribution): if value is not None: ep.require(installer=self.fetch_build_egg) ep.load()(self, ep.name, value) - if getattr(self, 'convert_doctests_2to3', None): + if getattr(self, 'convert_2to3_doctests', None): # XXX may convert to set here when we can rely on set being builtin - self.convert_doctests_2to3 = [os.path.abspath(p) for p in self.convert_doctests_2to3] + self.convert_2to3_doctests = [os.path.abspath(p) for p in self.convert_2to3_doctests] else: - self.convert_doctests_2to3 = [] + self.convert_2to3_doctests = [] def fetch_build_egg(self, req): """Fetch an egg needed for building""" |