changeset 17707 | 35674bd95200 |
parent 17467 | 448d0c452140 |
child 18285 | 9589227657bc |
--- a/tests/hghave.py Thu Oct 04 16:44:28 2012 +0200 +++ b/tests/hghave.py Thu Oct 04 16:52:20 2012 +0200 @@ -152,7 +152,7 @@ return False def getsvnversion(): - m = matchoutput('svn --version 2>&1', r'^svn,\s+version\s+(\d+)\.(\d+)') + m = matchoutput('svn --version --quiet 2>&1', r'^(\d+)\.(\d+)') if not m: return (0, 0) return (int(m.group(1)), int(m.group(2)))