Skip to content

Commit

Permalink
bookmarks4diff: Fix representation of no tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lubo committed May 4, 2024
1 parent 3f0e60f commit f03e0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bookmarks4diff/bookmarks4diff/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def handle_starttag(tag, attrs):
case "last_modified":
continue
case "tags":
value = value.split(",")
value = list(filter(len, value.split(",")))

item[name] = value

Expand Down

0 comments on commit f03e0ec

Please sign in to comment.