aboutsummaryrefslogtreecommitdiff
path: root/src/utils/http.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-12-11 22:30:05 +0000
committerGravatar jesopo2018-12-11 22:30:05 +0000
commitd373edfaae29a4b0928d98384148eae4e18533b2 (patch)
treec1d69387a4a0c7aafdffa6df4ee02a81fc961552 /src/utils/http.py
parentRe-add accidentally removed ":" in trakt.py (diff)
signature
Add missing `utils` import in utils.http
Diffstat (limited to 'src/utils/http.py')
-rw-r--r--src/utils/http.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/http.py b/src/utils/http.py
index 5062422d..c19f8c0f 100644
--- a/src/utils/http.py
+++ b/src/utils/http.py
@@ -1,6 +1,7 @@
import re, signal, traceback, typing, urllib.error, urllib.parse
import json as _json
import bs4, requests
+from src import utils
USER_AGENT = ("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 "
"(KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36")