Browse Source

[fix] do not crash if publication date is missing in pubmed engine

Adam Tauber 7 years ago
parent
commit
1088c2a75d
1 changed files with 8 additions and 5 deletions
  1. 8
    5
      searx/engines/pubmed.py

+ 8
- 5
searx/engines/pubmed.py View File

84
                     content = content[0:300] + "..."
84
                     content = content[0:300] + "..."
85
         # TODO: center snippet on query term
85
         # TODO: center snippet on query term
86
 
86
 
87
-        publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
88
-                                          + '-' + entry.xpath('.//DateCreated/Month')[0].text
89
-                                          + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
90
-
91
         res_dict = {'url': url,
87
         res_dict = {'url': url,
92
                     'title': title,
88
                     'title': title,
93
-                    'publishedDate': publishedDate,
94
                     'content': content}
89
                     'content': content}
95
 
90
 
91
+        try:
92
+            publishedDate = datetime.strptime(entry.xpath('.//DateCreated/Year')[0].text
93
+                                              + '-' + entry.xpath('.//DateCreated/Month')[0].text
94
+                                              + '-' + entry.xpath('.//DateCreated/Day')[0].text, '%Y-%m-%d')
95
+            res_dict['publishedDate'] = publishedDate
96
+        except:
97
+            pass
98
+
96
         results.append(res_dict)
99
         results.append(res_dict)
97
 
100
 
98
         return results
101
         return results