Update the title of the window with the current time.
(self)
| 165 | self.ScheduleUpdate() |
| 166 | |
| 167 | def UpdateTime(self): |
| 168 | """Update the title of the window with the current time.""" |
| 169 | self.root.title("Stats Viewer [updated %s]" % time.strftime("%H:%M:%S")) |
| 170 | |
| 171 | def ScheduleUpdate(self): |
| 172 | """Schedules the next ui update.""" |