diff --git a/pirate/torrent.py b/pirate/torrent.py index 340618d..e5289a7 100644 --- a/pirate/torrent.py +++ b/pirate/torrent.py @@ -182,7 +182,8 @@ def save_torrents(printer, chosen_links, results, folder): try: torrent = get_torrent(info_hash) except urllib.error.HTTPError: - printer.print('There is no cached file for this torrent :(', + printer.print('There is no cached file for this torrent :(' + ' \nCode: {} - {}'.format(e.code, e.reason), color='ERROR') else: open(file, 'wb').write(torrent)