Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/icoz/habraparse.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--habr/topic.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/habr/topic.py b/habr/topic.py
index e9c3631..640b931 100644
--- a/habr/topic.py
+++ b/habr/topic.py
@@ -48,7 +48,7 @@ class TMTopic(object):
self.post['hubs'].append((h.text, h.attrib['href']))
post_title = doc.xpath('//h1[@class="post__title"]/span')
if len(post_title) == 0:
- raise PostDeleted
+ raise PostDeleted('Post Deleted! {} gives status_code={}'.format(self.url, req.status_code))
self.post['title'] = post_title
tmp = \
doc.xpath("//a[@class='post-type__value post-type__value_author']") or \
@@ -166,7 +166,7 @@ class TMTopic(object):
class HabraTopic(TMTopic):
def __init__(self, topic_id):
super().__init__(topic_id, domain='habrahabr.ru')
- self.post['title'] = self.post['title'][1].text
+ self.post['title'] = self.post['title'][0].text
class GeektimesTopic(TMTopic):