Do not delete the QNetworkResponse in the slot connected to finished() signal.

This commit is contained in:
Jeremy
2015-01-30 14:41:51 -07:00
parent 1c33ad4527
commit 1935bbf510
2 changed files with 1 additions and 1 deletions

View File

@@ -235,6 +235,7 @@ class HTTPClient:
callback(params, error=True)
else:
callback(params)
response.deleteLater()
def dump(self):
"""

View File

@@ -45,7 +45,6 @@ setup(
description="GNS3 graphical interface for the GNS3 server.",
long_description=open("README.rst", "r").read(),
install_requires=[
"ws4py>=0.3.4",
"apache-libcloud>=0.14.1",
"requests",
"paramiko",