From b8b3c19fbf368bca0b11f95c5b8cc604015d0ea4 Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Mon, 5 Feb 2024 09:56:47 -0500 Subject: [PATCH] *sigh* A JSON key was changed. :( --- scripts/tkremind | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tkremind b/scripts/tkremind index de6de10b..80a5187b 100755 --- a/scripts/tkremind +++ b/scripts/tkremind @@ -2720,8 +2720,8 @@ proc ShowQueue { file } { } proc sort_q { a b } { - set a_ttime [dict get $a nextttime] - set b_ttime [dict get $b nextttime] + set a_ttime [dict get $a nexttime] + set b_ttime [dict get $b nexttime] if {$a_ttime < $b_ttime} { return -1 }