##// END OF EJS Templates
test-hgweb-auth: alias ui as uimod
Yuya Nishihara -
r28807:736f64b2 default
parent child Browse files
Show More
@@ -3,7 +3,7 b' from __future__ import absolute_import, '
3 from mercurial import demandimport; demandimport.enable()
3 from mercurial import demandimport; demandimport.enable()
4 import urllib2
4 import urllib2
5 from mercurial import (
5 from mercurial import (
6 ui,
6 ui as uimod,
7 url,
7 url,
8 util,
8 util,
9 )
9 )
@@ -11,7 +11,7 b' from mercurial.error import ('
11 Abort,
11 Abort,
12 )
12 )
13
13
14 class myui(ui.ui):
14 class myui(uimod.ui):
15 def interactive(self):
15 def interactive(self):
16 return False
16 return False
17
17
General Comments 0
You need to be logged in to leave comments. Login now