aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-31 10:15:10 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-31 10:15:10 -0500
commit314d143ffcc838e1dbf7177b601c139f8d0b609f (patch)
tree4c63edea6d35632131f6dff85dd5d6fb46d471b8
parent54e96d8d8a6e18901d8e3e708fd0e82bfaba9569 (diff)
downloadexternal_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.tar.gz
external_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.tar.bz2
external_python_setuptools-314d143ffcc838e1dbf7177b601c139f8d0b609f.zip
Restore _default_revctrl implementation (stubbed). Fixes #320.
-rw-r--r--CHANGES.txt8
-rwxr-xr-xsetuptools/command/sdist.py1
2 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 5161fbe5..9b8a81cb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -2,6 +2,14 @@
CHANGES
=======
+----
+10.1
+----
+
+* Issue #320: Added a compatibility implementation of `sdist._default_revctrl`
+ so that systems relying on that interface do not fail (namely, Ubuntu 12.04
+ and similar Debian releases).
+
------
10.0.1
------
diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py
index 371bf547..a4e8288a 100755
--- a/setuptools/command/sdist.py
+++ b/setuptools/command/sdist.py
@@ -11,6 +11,7 @@ import pkg_resources
READMES = ('README', 'README.rst', 'README.txt')
+_default_revctrl = list
def walk_revctrl(dirname=''):
"""Find all files under revision control"""