Skip to content

Commit

Permalink
pyLoad 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
RaNaN committed Aug 8, 2011
1 parent de07cd5 commit a716a1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion module/gui/ConnectionManager.py
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
QWidget.__init__(self)

QMessageBox.warning(self, 'Warning',
"We are sorry but the GUI is not stable anymore. Please use the webinterface for much better experience. \n", QMessageBox.Ok)
"We are sorry but the GUI is not usable anymore. Please use the webinterface for much better experience. \n", QMessageBox.Ok)

return

Expand Down
4 changes: 2 additions & 2 deletions module/network/HTTPRequest.py
Expand Up @@ -76,7 +76,7 @@ def initHandle(self):

#self.c.setopt(pycurl.VERBOSE, 1)

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")
self.c.setopt(pycurl.USERAGENT, "Mozilla/5.0 (Windows NT 6.1; Win64; x64;en; rv:5.0) Gecko/20110619 Firefox/5.0")
if pycurl.version_info()[7]:
self.c.setopt(pycurl.ENCODING, "gzip, deflate")
self.c.setopt(pycurl.HTTPHEADER, ["Accept: */*",
Expand Down Expand Up @@ -204,7 +204,7 @@ def verifyHeader(self):

def getResponse(self):
""" retrieve response from string io """
if not self.rep: return None
if self.rep is None: return ""
value = self.rep.getvalue()
self.rep.close()
self.rep = StringIO()
Expand Down
4 changes: 2 additions & 2 deletions pyLoadCore.py
Expand Up @@ -18,9 +18,9 @@
@author: sebnapi
@author: RaNaN
@author: mkaay
@version: v0.4.6
@version: v0.4.7
"""
CURRENT_VERSION = '0.4.6-dev'
CURRENT_VERSION = '0.4.7'

import __builtin__

Expand Down

0 comments on commit a716a1e

Please sign in to comment.