Ensure source formatting consistency.
This commit is contained in:
parent
b2c85201cf
commit
63baf977be
|
@ -171,7 +171,7 @@ class BotInstance:
|
||||||
msg = self.bot_message
|
msg = self.bot_message
|
||||||
if random.randint(0, 100) < 5:
|
if random.randint(0, 100) < 5:
|
||||||
msg += " " + self.bot_hashtags
|
msg += " " + self.bot_hashtags
|
||||||
create_note_request = requests.post(self.misskey_url + "notes/create", json = {"fileIds": [file_id], "text": "%s\nURL: %s\n" % (msg, image_src), "i": self.misskey_token})
|
create_note_request = requests.post(self.misskey_url + "notes/create", json = {"fileIds": [file_id], "text": "%s\n [Source](%s)\n" % (msg, image_src), "i": self.misskey_token})
|
||||||
# If error, print error and exit
|
# If error, print error and exit
|
||||||
if create_note_request.status_code != 200:
|
if create_note_request.status_code != 200:
|
||||||
print("Error: " + create_note_request.json()["error"]["message"], file=log_file)
|
print("Error: " + create_note_request.json()["error"]["message"], file=log_file)
|
||||||
|
|
Loading…
Reference in New Issue