1 parent f67be83 commit 10ed2e7Copy full SHA for 10ed2e7
1 file changed
server/sources/management/commands/importrss.py
@@ -5,6 +5,7 @@
5
import lxml.html
6
import lxml.etree
7
import requests
8
+import ssl
9
from datetime import timedelta
10
11
import dateutil.parser
@@ -21,6 +22,7 @@
21
22
import warnings
23
warnings.filterwarnings("ignore")
24
25
+ssl._create_default_https_context = ssl._create_unverified_context
26
27
# additional timezones which are not recognized byt dateutil.parser by default
28
TZ_INFOS = {
0 commit comments