diff --git a/run b/run index 72456c1..61e636e 100755 --- a/run +++ b/run @@ -8,6 +8,7 @@ import re import subprocess from base64 import b64decode from hashlib import sha1 +from sys import stderr from urllib.parse import urlparse, unquote import requests @@ -90,7 +91,8 @@ def do_premium_download(link, i): download_link = soup2.find("a", attrs={"download": lambda x: x}).get("download") _download(download_link, i) except: - print(r2.content) + print(r2.content, file=stderr) + pass def get_topic_id(topic_url):