diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-20 23:00:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-20 23:00:04 -0400 |
commit | fd3ff004cd3570460a079de785846f54ae1ee36f (patch) | |
tree | 373f653d4aec874e2aa3b2a9bc7c77f8526ceb89 /setuptools/command/bdist_egg.py | |
parent | 966e2fa4118277ed4551aa2215ac6ebac34b37e5 (diff) | |
parent | 39bf3155d47c0024240be414a611dcb6d549f53c (diff) | |
download | external_python_setuptools-fd3ff004cd3570460a079de785846f54ae1ee36f.tar.gz external_python_setuptools-fd3ff004cd3570460a079de785846f54ae1ee36f.tar.bz2 external_python_setuptools-fd3ff004cd3570460a079de785846f54ae1ee36f.zip |
Merge pull request #662 from stepshal/blank_lines
Add missing blank lines after class or function definition.
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index c40022a1..50744b87 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -432,6 +432,7 @@ def can_scan(): # Attribute names of options for commands that might need to be convinced to # install to the egg build directory + INSTALL_DIRECTORY_ATTRS = [ 'install_lib', 'install_dir', 'install_data', 'install_base' ] |