Browse Source

I removed the parenthesis in the last commit and forgot to add them back

in the resulting string.
master
Julio Biason 14 years ago
parent
commit
dc87c2105f
  1. 2
      mitterlib/ui/ui_pygtk.py

2
mitterlib/ui/ui_pygtk.py

@ -839,7 +839,7 @@ class Interface(object):
next_update = next_call.strftime('%H:%M:%S')
# TODO: Check if the time format string should go in the config file.
message = '%s %s %s.' % (prefix, suffix, next_update)
message = '%s %s (at %s).' % (prefix, suffix, next_update)
self._update_statusbar(message % (interval))
self._refresh_id = gobject.timeout_add(
interval * 60 * 1000,

Loading…
Cancel
Save