summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattori Birnbaum <mattori.birnbaum@gmail.com>2021-05-07 20:32:15 +0900
committerChristian Geier <geier@lostpackets.de>2023-10-28 16:40:56 +0200
commitd6b209cef316c0f463a56c7ad40818f24483112a (patch)
tree1f713cca78e1f5d24f818777a8037e422e65d66b
parente6ce833c14559703ddec9b46eff73f228a5da6c3 (diff)
added missing tail reset
-rw-r--r--khal/controllers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/khal/controllers.py b/khal/controllers.py
index c7d0b49d..03a04bae 100644
--- a/khal/controllers.py
+++ b/khal/controllers.py
@@ -78,7 +78,7 @@ def human_formatter(format_string, width=None):
def fmt(rows):
results = []
for row in rows:
- s = format_string.format(**row)
+ s = format_string.format(**row) + style('', reset=True)
if width:
results += utils.color_wrap(s, width)
else: