aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/downloader/websocket.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/downloader/websocket.py')
-rw-r--r--hypervideo_dl/downloader/websocket.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/hypervideo_dl/downloader/websocket.py b/hypervideo_dl/downloader/websocket.py
index 0882220..58e2bce 100644
--- a/hypervideo_dl/downloader/websocket.py
+++ b/hypervideo_dl/downloader/websocket.py
@@ -5,9 +5,12 @@ import threading
try:
import websockets
- has_websockets = True
-except ImportError:
+except (ImportError, SyntaxError):
+ # websockets 3.10 on python 3.6 causes SyntaxError
+ # See https://github.com/hypervideo/hypervideo/issues/2633
has_websockets = False
+else:
+ has_websockets = True
from .common import FileDownloader
from .external import FFmpegFD