summaryrefslogtreecommitdiff
path: root/plugins/time_marker.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-02-03 23:37:22 +0100
committermathieui <mathieui@mathieui.net>2014-02-03 23:37:22 +0100
commit199ac46d90576062ae21e49cc266d53d1ede8689 (patch)
treec3baad82691faeaac7ba76ff78e652e0c1bf7836 /plugins/time_marker.py
parentfe4404d3f08fee2de08fd2a670b97412c2d70962 (diff)
downloadpoezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.gz
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.bz2
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.tar.xz
poezio-199ac46d90576062ae21e49cc266d53d1ede8689.zip
Fix #2208 (time_marker shows an useless timestamp)
Diffstat (limited to 'plugins/time_marker.py')
-rw-r--r--plugins/time_marker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/time_marker.py b/plugins/time_marker.py
index b26a6ae7..7a20af8d 100644
--- a/plugins/time_marker.py
+++ b/plugins/time_marker.py
@@ -79,6 +79,6 @@ class Plugin(BasePlugin):
if last_message_date:
delta = datetime.now() - last_message_date
if delta >= timedelta(0, self.config.get('delay', 900)):
- tab.add_message("%s passed…" % (format_timedelta(delta),))
+ tab.add_message("%s passed…" % (format_timedelta(delta),), str_time='')