From 9b5a67e874d63afac34fa2a423c69c358e4021f5 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Mon, 30 Dec 2013 01:39:05 +0100 Subject: [PATCH] dr: missing imports --- lib/svtplay_dl/service/dr.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/svtplay_dl/service/dr.py b/lib/svtplay_dl/service/dr.py index c8a3b67..351f415 100644 --- a/lib/svtplay_dl/service/dr.py +++ b/lib/svtplay_dl/service/dr.py @@ -3,11 +3,13 @@ from __future__ import absolute_import import re import json +import sys from svtplay_dl.service import Service from svtplay_dl.utils import get_http_data, select_quality from svtplay_dl.fetcher.rtmp import download_rtmp from svtplay_dl.fetcher.hls import download_hls +from svtplay_dl.log import log class Dr(Service): def handle(self, url):