Skip to content

Commit

Permalink
Fix bug in --tag option (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-rouse committed Apr 24, 2023
1 parent 35e0a4f commit b6ae436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remind.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ def to_remind(
remind.append(trigdates)

if tags:
remind.extend([f"TAG {Remind._abbr_tag(tag) for tag in tags}"])
remind.extend([f"TAG {Remind._abbr_tag(tag)}" for tag in tags])

if hasattr(vevent, "categories_list"):
for categories in vevent.categories_list:
Expand Down

0 comments on commit b6ae436

Please sign in to comment.