lint: Fix % comprehensions being used without a tuple.
This commit is contained in:
parent
d5690c80c9
commit
58a5de0377
2 changed files with 2 additions and 2 deletions
|
@ -143,7 +143,7 @@ def send_reminders():
|
|||
key = (id, start)
|
||||
if key not in sent:
|
||||
if start.hour == 0 and start.minute == 0:
|
||||
line = '%s is today.' % (summary)
|
||||
line = '%s is today.' % (summary,)
|
||||
else:
|
||||
line = '%s starts at %s' % (summary, start.strftime('%H:%M'))
|
||||
print('Sending reminder:', line)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue