##// END OF EJS Templates
test-duplicateoptions: alias ui as uimod
Yuya Nishihara -
r28804:ce49c8d4 default
parent child Browse files
Show More
@@ -3,7 +3,7 b' import os'
3 3 from mercurial import (
4 4 commands,
5 5 extensions,
6 ui,
6 ui as uimod,
7 7 )
8 8
9 9 ignore = set(['highlight', 'win32text', 'factotum'])
@@ -21,7 +21,7 b' for ext in disabled:'
21 21
22 22 hgrc.close()
23 23
24 u = ui.ui()
24 u = uimod.ui()
25 25 extensions.loadall(u)
26 26
27 27 globalshort = set()
General Comments 0
You need to be logged in to leave comments. Login now