diff --git a/Procfile b/Procfile index efae4d8..fc272ab 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: flask db upgrade; gunicorn wsgi:app \ No newline at end of file +web: gunicorn wsgi:app \ No newline at end of file diff --git a/rsshub/spiders/chuansongme/articles.py b/rsshub/spiders/chuansongme/articles.py index 7385feb..ae15a08 100644 --- a/rsshub/spiders/chuansongme/articles.py +++ b/rsshub/spiders/chuansongme/articles.py @@ -8,10 +8,6 @@ def parse(post): item['title'] = post.css('a.question_link::text').extract()[-1].strip() link = f"{domain}{post.css('a.question_link::attr(href)').extract_first()}" item['link'] = link - try: - item['description'] = '\n'.join(fetch(link).css('p span::text').extract()) - except AttributeError: - pass return item