From 7e307d6e040d13e80d07b2edc7351f8ff10eb9ac Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Sat, 15 Jun 2024 18:05:06 +0200 Subject: [PATCH] fix: :seedling: add url in case of timeout --- commands/nyaa-404.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/nyaa-404.py b/commands/nyaa-404.py index cba4c88..1669516 100755 --- a/commands/nyaa-404.py +++ b/commands/nyaa-404.py @@ -42,6 +42,6 @@ for torrent in client.get_torrents(): f"{response.status_code} - {path.join(torrent.downloadDir, torrent.name)}" ) except Exception: - print(f"{response.status_code} - {path.join(torrent.downloadDir, torrent.name)}") + print(f"{response.status_code} - {torrent.comment} - {path.join(torrent.downloadDir, torrent.name)}") sleep(1)