diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-07 01:05:42 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-07 01:05:42 -0500 |
commit | 3a4bcfdaff8e45488dd00047d5c0fc67b27a1de9 (patch) | |
tree | 3d587d43b0b82f9be797882c71ecb47905dc3542 | |
parent | 009ebf9ed37dc39af25a465219a082efab99cc13 (diff) | |
parent | 748f46273dbaf80b04cf69b8cbd0f4cf6e37a9b6 (diff) | |
download | external_python_setuptools-3a4bcfdaff8e45488dd00047d5c0fc67b27a1de9.tar.gz external_python_setuptools-3a4bcfdaff8e45488dd00047d5c0fc67b27a1de9.tar.bz2 external_python_setuptools-3a4bcfdaff8e45488dd00047d5c0fc67b27a1de9.zip |
Merged in philip_thiem/setuptools (pull request #22)
Removed verbose warning from svn_utils.py
-rw-r--r-- | setuptools/svn_utils.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/setuptools/svn_utils.py b/setuptools/svn_utils.py index 22b45cd7..55dbb74d 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -244,7 +244,6 @@ class SvnInfo(object): "on pre 1.7 .svn parsing"), DeprecationWarning)
return SvnFileInfo(dirname)
elif not has_svn:
- log.warn('Not SVN Repository')
return SvnInfo(dirname)
elif base_svn_version < (1, 5):
return Svn13Info(dirname)
|