##// END OF EJS Templates
commandserver: reset state of progress bar per command...
Yuya Nishihara -
r27566:5d6f984c default
parent child Browse files
Show More
@@ -214,6 +214,11 b' class server(object):'
214 self.repo.ui = self.repo.dirstate._ui = repoui
214 self.repo.ui = self.repo.dirstate._ui = repoui
215 self.repo.invalidateall()
215 self.repo.invalidateall()
216
216
217 # reset last-print time of progress bar per command
218 # (progbar is singleton, we don't have to do for all uis)
219 if copiedui._progbar:
220 copiedui._progbar.resetstate()
221
217 for ui in uis:
222 for ui in uis:
218 # any kind of interaction must use server channels, but chg may
223 # any kind of interaction must use server channels, but chg may
219 # replace channels by fully functional tty files. so nontty is
224 # replace channels by fully functional tty files. so nontty is
General Comments 0
You need to be logged in to leave comments. Login now