Skip to content

Commit

Permalink
Increase version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
prometheus42 committed Dec 10, 2022
1 parent 19b62b4 commit 6457d43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion description.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:lo="http://libreoffice.org/extensions/description/2011"
xmlns:xlink="http://www.w3.org/1999/xlink">
<identifier value="de.ichmann.libreoffice.import_ical"/>
<version value="0.1"/>
<version value="0.2"/>
<platform value="all"/>
<display-name>
<name lang="de">iCalendar Import</name>
Expand Down
2 changes: 2 additions & 0 deletions src/ical2csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def marshal_data(data):
return data.format('DD.MM.YYYY HH:mm:ss')
elif type(data) == timedelta:
return str(data)
elif type(data) == set:
return str(data)
else:
logger.error('Unsupported type: {}'.format(type(data)))
raise ValueError()
Expand Down

0 comments on commit 6457d43

Please sign in to comment.