##// END OF EJS Templates
tests: fix hghave test for rst2html to not spew error output
Dirkjan Ochtman -
r9719:a73f9ee8 default
parent child Browse files
Show More
@@ -121,8 +121,8 b' def has_git():'
121 return matchoutput('git --version 2>&1', r'^git version')
121 return matchoutput('git --version 2>&1', r'^git version')
122
122
123 def has_rst2html():
123 def has_rst2html():
124 return matchoutput('rst2html --version', r'^rst2html \(Docutils') or \
124 return matchoutput('rst2html --version 2>&1', r'^rst2html \(Docutils') or \
125 matchoutput('rst2html.py --version', r'^rst2html.py \(Docutils')
125 matchoutput('rst2html.py --version 2>&1', r'^rst2html.py \(Docutils')
126
126
127 def has_svn():
127 def has_svn():
128 #return matchoutput('svn --version 2>&1', r'^svn, version') and \
128 #return matchoutput('svn --version 2>&1', r'^svn, version') and \
General Comments 0
You need to be logged in to leave comments. Login now