summaryrefslogtreecommitdiff
path: root/play
diff options
context:
space:
mode:
Diffstat (limited to 'play')
-rw-r--r--play2
1 files changed, 1 insertions, 1 deletions
diff --git a/play b/play
index e522b08..dbf74be 100644
--- a/play
+++ b/play
@@ -265,7 +265,7 @@ class CounterWindow(Window):
self.move(0, 0)
# Color of the statusbar counter
self.attron(curses.color_pair(1))
- self.insstr("%02dh %02dm %02ds" % (h, m, s))
+ self.insstr("[%02d:%02d:%02d]" % (h, m, s))
self.attroff(curses.color_pair(1))
self.touchwin()
self.refresh()