When I reblog a post using pytumblr, any tags I pass to the reblog()
function are split into their constituent letters. For example, the following function call:
client.reblog(blogName, id=post['id'], reblog_key=post['reblog_key'],
state='published', tags='anagram', comment=reblogComment)
puts the following tags on the post:
#a #n #g #r #m
(Note: according to the Tumblr API, tags are to be supplied comma-delineated.)
Does anyone know how to fix this? Thanks!
Did you try with tags=('anagram',)
? Or a list of tags. It looks like an iterable is needed. It is iterating through the tag chars...