jspricke / python-remind

Python library to convert between Remind and iCalendar
GNU General Public License v3.0
13 stars 6 forks source link

Fix bug in --tag option #18

Closed paul-rouse closed 1 year ago

paul-rouse commented 1 year ago

The --tag option to ics2rem was producing incorrect output. The generator expression needs to be outside the f-string - it was producing output containing "<generator object ...>"!

jspricke commented 1 year ago

Thanks!