1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 09:46:25 +00:00

Set proper User-Agent

This commit is contained in:
Paweł Jastrzębski
2015-08-24 17:18:39 +02:00
parent 351084b703
commit d26eb7cdcd

View File

@@ -246,8 +246,8 @@ class VersionThread(QtCore.QThread):
def run(self): def run(self):
try: try:
XML = urlopen('https://kcc.iosphe.re/Version/') XML = parse(urlopen(Request('https://kcc.iosphe.re/Version/',
XML = parse(XML) headers={'User-Agent': 'KindleComicConverter/' + __version__})))
except Exception: except Exception:
return return
latestVersion = XML.childNodes[0].getElementsByTagName('LatestVersion')[0].childNodes[0].toxml() latestVersion = XML.childNodes[0].getElementsByTagName('LatestVersion')[0].childNodes[0].toxml()
@@ -950,7 +950,8 @@ class KCCGUI(KCC_ui.Ui_KCC):
text = doc.createTextNode(message) text = doc.createTextNode(message)
main.appendChild(text) main.appendChild(text)
urlopen(Request(url='https://kcc.iosphe.re/ErrorHandle/', data=doc.toxml(encoding='utf-8'), urlopen(Request(url='https://kcc.iosphe.re/ErrorHandle/', data=doc.toxml(encoding='utf-8'),
headers={'Content-Type': 'application/xml'})) headers={'Content-Type': 'application/xml',
'User-Agent': 'KindleComicConverter/' + __version__}))
except: except:
pass pass
elif kind == 'question': elif kind == 'question':