diff options
author | William Grzybowski <wg@FreeBSD.org> | 2013-12-25 10:34:02 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2013-12-25 10:34:02 +0000 |
commit | caa91ca543b5f68074da8d8fd79e842bb9634cae (patch) | |
tree | f970b1e69f390287090ef43a1ed9262d0b8c5ec2 /setuptools/command/sdist.py | |
parent | 03882a7d0d48dd842f95a2644d33f63d31f1e8a8 (diff) | |
download | external_python_setuptools-caa91ca543b5f68074da8d8fd79e842bb9634cae.tar.gz external_python_setuptools-caa91ca543b5f68074da8d8fd79e842bb9634cae.tar.bz2 external_python_setuptools-caa91ca543b5f68074da8d8fd79e842bb9634cae.zip |
Fix postproc reference
--HG--
branch : postproc
Diffstat (limited to 'setuptools/command/sdist.py')
-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) |