diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-05 18:29:43 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-02-05 18:29:43 -0500 |
commit | 15890a34456e31755d991bcbb2970591e32c8131 (patch) | |
tree | ca7793f325870750c3268d2016d20c84f0d55c65 | |
parent | f547377479ff30d39a121b3ba1b753dcaf544eb2 (diff) | |
download | external_python_setuptools-15890a34456e31755d991bcbb2970591e32c8131.tar.gz external_python_setuptools-15890a34456e31755d991bcbb2970591e32c8131.tar.bz2 external_python_setuptools-15890a34456e31755d991bcbb2970591e32c8131.zip |
Normalize whitespace
--HG--
extra : source : e4abff0dc46f1c089d8a61bac2406a57df406dcc
-rwxr-xr-x | setuptools/command/sdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 77a3852b..aa6f47f0 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -40,6 +40,7 @@ class re_finder(object): #was an re_finder for calling unescape path = self.postproc(path) yield svn_utils.joinpath(dirname,path) + def __call__(self, dirname=''): path = svn_utils.joinpath(dirname, self.path) @@ -65,7 +66,6 @@ finders = [ ] - class sdist(_sdist): """Smart sdist that finds anything supported by revision control""" |