diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-08-09 20:14:43 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-08-09 20:38:46 +0200 |
commit | 604587a5d96cd1b532a68e60be2c52eba72c0c23 (patch) | |
tree | 6adc8625c67b9dfb51f2c0fcb14c6010d7562d05 /plugins | |
parent | f065fbaef99814c4035720ced86413c56b26315a (diff) | |
download | poezio-604587a5d96cd1b532a68e60be2c52eba72c0c23.tar.gz poezio-604587a5d96cd1b532a68e60be2c52eba72c0c23.tar.bz2 poezio-604587a5d96cd1b532a68e60be2c52eba72c0c23.tar.xz poezio-604587a5d96cd1b532a68e60be2c52eba72c0c23.zip |
plugins/time_marker: use now required poezio.ui.types
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/time_marker.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/time_marker.py b/plugins/time_marker.py index 76f7e589..6ce511a0 100644 --- a/plugins/time_marker.py +++ b/plugins/time_marker.py @@ -31,6 +31,7 @@ Messages like “2 hours, 25 minutes passed…” are automatically displayed in from poezio.plugin import BasePlugin from datetime import datetime, timedelta +from poezio.ui.types import InfoMessage class Plugin(BasePlugin): @@ -72,4 +73,5 @@ class Plugin(BasePlugin): delta = datetime.now() - last_message_date if delta >= timedelta(0, self.config.get('delay', 900)): tab.add_message( - "%s passed…" % (format_timedelta(delta), ), str_time='') + InfoMessage("%s passed…" % (format_timedelta(delta), )) + ) |