##// END OF EJS Templates
blackbox: fix a case of name capture
Bryan O'Sullivan -
r19052:63a783d1 default
parent child Browse files
Show More
@@ -36,7 +36,7 b' def wrapui(ui):'
36 class blackboxui(ui.__class__):
36 class blackboxui(ui.__class__):
37 @util.propertycache
37 @util.propertycache
38 def track(self):
38 def track(self):
39 return ui.configlist('blackbox', 'track', ['*'])
39 return self.configlist('blackbox', 'track', ['*'])
40
40
41 def log(self, event, *msg, **opts):
41 def log(self, event, *msg, **opts):
42 global lastblackbox
42 global lastblackbox
General Comments 0
You need to be logged in to leave comments. Login now