diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-10-23 11:20:44 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-10-23 11:20:44 -0400 |
commit | 693d7bfd19d7be7427637bf784829134eeeb9efa (patch) | |
tree | 08a20931ee92c4753c508cf002fcd1c7e0d27b1f | |
parent | 8772accf84d424f6cc848567fde0747716448030 (diff) | |
download | external_python_setuptools-693d7bfd19d7be7427637bf784829134eeeb9efa.tar.gz external_python_setuptools-693d7bfd19d7be7427637bf784829134eeeb9efa.tar.bz2 external_python_setuptools-693d7bfd19d7be7427637bf784829134eeeb9efa.zip |
Correct typo
-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 dadb682a..6502fc98 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -302,7 +302,7 @@ class SvnInfo(object): self._externals = None
def get_revision(self):
- 'Retrieve the directory revision informatino using svnversion'
+ 'Retrieve the directory revision information using svnversion'
code, data = _run_command(['svnversion', '-c', self.path])
if code:
log.warn("svnversion failed")
|