Fix add's tag list

This commit is contained in:
Tim Van Baak 2019-12-17 09:56:04 -08:00
parent f1ccef1599
commit 90b38195ec
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ def command_add(args):
if args.time: item['time'] = int(args.time) if args.time: item['time'] = int(args.time)
if args.author: item['author'] = str(args.author) if args.author: item['author'] = str(args.author)
if args.body: item['body'] = str(args.body) if args.body: item['body'] = str(args.body)
if args.tags: item['tags'] = [str(tag) for tag in args.tags] if args.tags: item['tags'] = [str(tag) for tag in args.tags.split(",")]
if args.ttl: item['ttl'] = int(args.ttl) if args.ttl: item['ttl'] = int(args.ttl)
populate_new(item) populate_new(item)