From c01cefe13091a139c8f90627f85c25f259dda86f Mon Sep 17 00:00:00 2001 From: Intercal Date: Mon, 18 Aug 2025 09:34:52 -0700 Subject: [PATCH] Fix tags on posts API was expecting a list of strings rather than making you join strings together with commas yourself --- tcli/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcli/__main__.py b/tcli/__main__.py index 183ec5b..ebfcf67 100644 --- a/tcli/__main__.py +++ b/tcli/__main__.py @@ -266,14 +266,14 @@ def do_post( parent_blogname=reblog_parent, id=reblog, content=content, - tags=",".join(tags), + tags=tags, media_sources=media_sources, ) else: response = tumblr.create_post( config["blog"], content=content, - tags=",".join(tags), + tags=tags, media_sources=media_sources, ) print("Got response:")