Fix bug with empty description

This commit is contained in:
2018-03-07 18:56:08 -08:00
parent 1b174219d5
commit c97f79a081
2 changed files with 6 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ class MyTasks(object):
] + [TaskRow(t, self.callback) for t in self.today] + [
urwid.Text(('atm_section', 'Upcoming'))
] + [TaskRow(t, self.callback) for t in self.upcoming] + [
urwid.Text(('atm_section', 'Upcoming'))
urwid.Text(('atm_section', 'Later'))
] + [TaskRow(t, self.callback) for t in self.later]
)
),