diff options
| author | PJ Eby <distutils-sig@python.org> | 2005-07-17 04:42:42 +0000 |
|---|---|---|
| committer | PJ Eby <distutils-sig@python.org> | 2005-07-17 04:42:42 +0000 |
| commit | 485e0252003b66815b30bba588a6f5c54e51393e (patch) | |
| tree | b809540a247a26776845a6f9a96c91a20f983af1 /setuptools/command/develop.py | |
| parent | 0ec41f1053ea7f47c9aa31c15384241dbb440d7b (diff) | |
| download | python-setuptools-bitbucket-485e0252003b66815b30bba588a6f5c54e51393e.tar.gz | |
Renamings for consistent terminology; distributions and requirements now
both have 'project_name' attributes, instead of one having 'name' and the
other 'distname'. Requirements no longer have 'options', they have
'extras'. This is the beginning of the terminology/architecture
refactoring described at:
http://mail.python.org/pipermail/distutils-sig/2005-June/004652.html
Diffstat (limited to 'setuptools/command/develop.py')
| -rwxr-xr-x | setuptools/command/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py index a757b2e5..40d22b28 100755 --- a/setuptools/command/develop.py +++ b/setuptools/command/develop.py @@ -51,7 +51,7 @@ class develop(easy_install): self.dist = Distribution( self.egg_path, PathMetadata(self.egg_path, os.path.abspath(ei.egg_info)), - name = ei.egg_name + project_name = ei.egg_name ) def install_for_development(self): |
