Fix tags on posts
API was expecting a list of strings rather than making you join strings together with commas yourself
This commit is contained in:
@@ -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:")
|
||||
|
||||
Reference in New Issue
Block a user