aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/sdist.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/sdist.py')
-rwxr-xr-xsetuptools/command/sdist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index fc5bdfb2..2b1d117e 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -95,8 +95,7 @@ def entries_finder(dirname, filename):
for match in entries_pattern.finditer(data):
yield joinpath(dirname,unescape(match.group(1)))
else:
- from warnings import warn
- warn("unrecognized .svn/entries format in "+dirname)
+ log.warn("unrecognized .svn/entries format in %s", dirname)
finders = [
@@ -121,6 +120,7 @@ finders = [
+
class sdist(_sdist):
"""Smart sdist that finds anything supported by revision control"""