File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def __init__(self):
28
28
QWidget .__init__ (self )
29
29
30
30
QMessageBox .warning (self , 'Warning' ,
31
- "We are sorry but the GUI is not stable anymore. Please use the webinterface for much better experience. \n " , QMessageBox .Ok )
31
+ "We are sorry but the GUI is not usable anymore. Please use the webinterface for much better experience. \n " , QMessageBox .Ok )
32
32
33
33
return
34
34
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def initHandle(self):
76
76
77
77
#self.c.setopt(pycurl.VERBOSE, 1)
78
78
79
- self .c .setopt (pycurl .USERAGENT , "Mozilla/5.0 (Windows; U; Windows NT 5 .1; en; rv:1.9.2.10 ) Gecko/20100916 Firefox/3.6.10 " )
79
+ self .c .setopt (pycurl .USERAGENT , "Mozilla/5.0 (Windows NT 6 .1; Win64; x64; en; rv:5.0 ) Gecko/20110619 Firefox/5.0 " )
80
80
if pycurl .version_info ()[7 ]:
81
81
self .c .setopt (pycurl .ENCODING , "gzip, deflate" )
82
82
self .c .setopt (pycurl .HTTPHEADER , ["Accept: */*" ,
@@ -204,7 +204,7 @@ def verifyHeader(self):
204
204
205
205
def getResponse (self ):
206
206
""" retrieve response from string io """
207
- if not self .rep : return None
207
+ if self .rep is None : return ""
208
208
value = self .rep .getvalue ()
209
209
self .rep .close ()
210
210
self .rep = StringIO ()
Original file line number Diff line number Diff line change 18
18
@author: sebnapi
19
19
@author: RaNaN
20
20
@author: mkaay
21
- @version: v0.4.6
21
+ @version: v0.4.7
22
22
"""
23
- CURRENT_VERSION = '0.4.6-dev '
23
+ CURRENT_VERSION = '0.4.7 '
24
24
25
25
import __builtin__
26
26
You can’t perform that action at this time.
0 commit comments