Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/10se1ucgo/DisableWinTracking.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dwt_about.py')
-rw-r--r--dwt_about.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/dwt_about.py b/dwt_about.py
index 8a75058..98b4221 100644
--- a/dwt_about.py
+++ b/dwt_about.py
@@ -19,7 +19,8 @@
import datetime
import cgi
import json
-import urllib2
+from six.moves.urllib.request import urlopen
+from six.moves.urllib.error import URLError
import webbrowser
from distutils.version import StrictVersion
@@ -169,8 +170,8 @@ class Licenses(wx.Dialog):
def update_check(parent):
try:
- r = urllib2.urlopen('https://api.github.com/repos/10se1ucgo/DisableWinTracking/releases/latest')
- except urllib2.URLError:
+ r = urlopen('https://api.github.com/repos/10se1ucgo/DisableWinTracking/releases/latest')
+ except URLError:
return
value, parameters = cgi.parse_header(r.headers.get('Content-Type', ''))
release = json.loads(r.read().decode(parameters.get('charset', 'utf-8')))