Made code look better on non-Gajim clients

This commit is contained in:
j4nk 2024-07-28 13:42:06 -04:00
parent 91ca14b64d
commit 82a5c15bd4
1 changed files with 1 additions and 1 deletions

2
bot.py
View File

@ -93,7 +93,7 @@ class QBittorrentAPICaller():
def torrentList(self, modifier=""):
the_url = self.url + "/" + "api/v2/torrents/info"
to_ret = "```"
to_ret = "```\n"
for f in ["downloading", "completed"]:
resp = self.session.post(the_url, data={"filter":f})
if resp.status_code != 200: