##// END OF EJS Templates
test-doctest: remove TERM env variable only if it's there
Patrick Mezard -
r7078:967adcf5 default
parent child Browse files
Show More
@@ -1,5 +1,7 b''
1 # this is hack to make sure no escape characters are inserted into the output
1 # this is hack to make sure no escape characters are inserted into the output
2 import os; del os.environ['TERM']
2 import os;
3 if 'TERM' in os.environ:
4 del os.environ['TERM']
3 import doctest
5 import doctest
4
6
5 import mercurial.changelog
7 import mercurial.changelog
General Comments 0
You need to be logged in to leave comments. Login now