diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:49:15 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-04 12:49:15 -0500 |
commit | e6a901a1f7d454f64fb6f1b13d8f777f3a836abd (patch) | |
tree | 637c333ee0c2940c3477baaebf17a297d97cfe25 /setuptools/svn_utils.py | |
parent | 3ca3f2d64dfcd377227cc2bbdfbc2e4c528e0098 (diff) | |
download | python-setuptools-git-e6a901a1f7d454f64fb6f1b13d8f777f3a836abd.tar.gz |
got some global version done, SVN 1.3.x or later now required
--HG--
extra : rebase_source : def9ab923ee6455791c92334ee79c09d9164c43e
Diffstat (limited to 'setuptools/svn_utils.py')
-rw-r--r-- | setuptools/svn_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/svn_utils.py b/setuptools/svn_utils.py index f373379c..5783489c 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -94,7 +94,7 @@ def _get_entry_schedule(entry): #-R without --xml parses a bit funny
def parse_externals(path):
try:
- _, lines = _run_command(['svn',
+ code, lines = _run_command(['svn',
'propget', 'svn:externals', path])
if code:
|