diff options
-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""" |