diff options
| author | Lennart Regebro <regebro@gmail.com> | 2012-08-22 14:14:07 +0200 |
|---|---|---|
| committer | Lennart Regebro <regebro@gmail.com> | 2012-08-22 14:14:07 +0200 |
| commit | a3b6b2bba70b44b62865e6474e5a007400d62884 (patch) | |
| tree | 4bd7addd0ba4aa798eae9202502ee601bb71f239 | |
| parent | 03ae7b2149f0eb85a27f893b98f6d35d535456ac (diff) | |
| download | python-setuptools-git-a3b6b2bba70b44b62865e6474e5a007400d62884.tar.gz | |
Issue #307: Prints the full path when .svn/entries is broken.
--HG--
branch : distribute
extra : rebase_source : 1836125ab8204364c8fb197d7c20c296a25f89c0
| -rw-r--r-- | CHANGES.txt | 1 | ||||
| -rwxr-xr-x | setuptools/command/sdist.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index c594a103..086ebdee 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,6 +12,7 @@ CHANGES in build/lib makes it work, although you will have to rebuild the module before testing it. * Issue #306: Even if 2to3 is used, we build in-place under Python 2. +* Issue #307: Prints the full path when .svn/entries is broken. ------ 0.6.28 diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index 1f88e93b..edb3b7f3 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -97,7 +97,7 @@ def entries_finder(dirname, filename): for match in entries_pattern.finditer(data): yield joinpath(dirname,unescape(match.group(1))) else: - log.warn("unrecognized .svn/entries format in %s", dirname) + log.warn("unrecognized .svn/entries format in %s", os.path.abspath(dirname)) finders = [ |
