mirror of
https://github.com/vale981/wunderlist-to-org
synced 2025-03-04 16:51:39 -05:00
fix folder tagging
This commit is contained in:
parent
850b0451a2
commit
491303f07d
1 changed files with 2 additions and 1 deletions
|
@ -141,7 +141,8 @@ def convert_wunderlist(filename):
|
|||
|
||||
def convert_wunderlist_list(writer, todo_list):
|
||||
writer.emit_node_title(
|
||||
todo_list["title"], tags=[todo_list["folder"]] if todo_list["folder"] else None
|
||||
todo_list["title"],
|
||||
tags=[todo_list["folder"]["title"]] if todo_list["folder"] else None,
|
||||
)
|
||||
|
||||
with writer.new_level():
|
||||
|
|
Loading…
Add table
Reference in a new issue