##// END OF EJS Templates
blackbox: don't unpack the list while passing into str.join()...
Pulkit Goyal -
r35745:05c70675 default
parent child Browse files
Show More
@@ -133,7 +133,7 b' def wrapui(ui):'
133 def debug(self, *msg, **opts):
133 def debug(self, *msg, **opts):
134 super(blackboxui, self).debug(*msg, **opts)
134 super(blackboxui, self).debug(*msg, **opts)
135 if self.debugflag:
135 if self.debugflag:
136 self.log('debug', '%s', ''.join(*msg))
136 self.log('debug', '%s', ''.join(msg))
137
137
138 def log(self, event, *msg, **opts):
138 def log(self, event, *msg, **opts):
139 global lastui
139 global lastui
General Comments 0
You need to be logged in to leave comments. Login now