diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-12-29 10:31:48 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-12-29 10:31:48 -0500 |
commit | a6e117077df2d6bac6032063c2fdf3d891f2dbd0 (patch) | |
tree | b87bd89667796a239b1502197823b9683ad9ed2f /setuptools/command | |
parent | fd9ba054c067505de376b0081fa638f2e0033d33 (diff) | |
parent | caa91ca543b5f68074da8d8fd79e842bb9634cae (diff) | |
download | external_python_setuptools-a6e117077df2d6bac6032063c2fdf3d891f2dbd0.tar.gz external_python_setuptools-a6e117077df2d6bac6032063c2fdf3d891f2dbd0.tar.bz2 external_python_setuptools-a6e117077df2d6bac6032063c2fdf3d891f2dbd0.zip |
Merged in williambr/setuptools/postproc (pull request #31)
Fix postproc reference
Diffstat (limited to 'setuptools/command')
-rwxr-xr-x | setuptools/command/sdist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 6249e75c..77a3852b 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -35,10 +35,10 @@ class re_finder(object): f.close() for match in self.pattern.finditer(data): path = match.group(1) - if postproc: + if self.postproc: #postproc used to be used when the svn finder #was an re_finder for calling unescape - path = postproc(path) + path = self.postproc(path) yield svn_utils.joinpath(dirname,path) def __call__(self, dirname=''): path = svn_utils.joinpath(dirname, self.path) |