##// END OF EJS Templates
tests: stop direct symbol import of pprint.pprint in tests-minirst
Yuya Nishihara -
r28840:8717d460 default
parent child Browse files
Show More
@@ -1,7 +1,5 b''
1 1 from __future__ import absolute_import, print_function
2 from pprint import (
3 pprint,
4 )
2 import pprint
5 3 from mercurial import (
6 4 minirst,
7 5 )
@@ -18,7 +16,7 b' def debugformat(text, form, **kwargs):'
18 16 if type(out) == tuple:
19 17 print(out[0][:-1])
20 18 print("-" * 70)
21 pprint(out[1])
19 pprint.pprint(out[1])
22 20 else:
23 21 print(out[:-1])
24 22 print("-" * 70)
General Comments 0
You need to be logged in to leave comments. Login now