diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-13 21:53:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 21:53:00 -0700 |
commit | c405c1094fb449fc07b0a9a239225f559436b6a2 (patch) | |
tree | cbec0027e0b718ae6844e3c4eddb71574c33dae0 /setuptools/archive_util.py | |
parent | 45de6ea8b9392771a6a14e012605614a7c148506 (diff) | |
parent | f749ccab1e55723848946c9aba5c3eddebe0b24e (diff) | |
download | external_python_setuptools-c405c1094fb449fc07b0a9a239225f559436b6a2.tar.gz external_python_setuptools-c405c1094fb449fc07b0a9a239225f559436b6a2.tar.bz2 external_python_setuptools-c405c1094fb449fc07b0a9a239225f559436b6a2.zip |
Merge pull request #634 from stepshal/whitespace
Add missing whitespace.
Diffstat (limited to 'setuptools/archive_util.py')
-rwxr-xr-x | setuptools/archive_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/archive_util.py b/setuptools/archive_util.py index 4da24ec2..d1950638 100755 --- a/setuptools/archive_util.py +++ b/setuptools/archive_util.py @@ -20,7 +20,7 @@ class UnrecognizedFormat(DistutilsError): """Couldn't recognize the archive type""" -def default_filter(src,dst): +def default_filter(src, dst): """The default progress/filter callback; returns True for all files""" return dst |