Skip to content

Commit

Permalink
remove QgsNetworkAccessManager.authBrowserAborted (GeoNode#217)
Browse files Browse the repository at this point in the history
This does not exist on QGIS3.18, which is our current target
  • Loading branch information
Ricardo Garcia Silva authored Jan 18, 2022
1 parent 1370304 commit 65ecfb2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "qgis_geonode"
version = "0.9.1"
version = "0.9.2-dev"
description = "A QGIS plugin for integrating with modern GeoNode"
authors = ["Kartoza <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
6 changes: 0 additions & 6 deletions src/qgis_geonode/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,6 @@ def __init__(
self._handle_request_timed_out
)
self.network_access_manager.finished.connect(self._handle_request_finished)
self.network_access_manager.authBrowserAborted.connect(
self._handle_auth_browser_aborted
)

def run(self) -> bool:
"""Run the QGIS task
Expand Down Expand Up @@ -263,9 +260,6 @@ def _handle_request_timed_out(
if self._num_finished >= len(self.requests_to_perform):
self._all_requests_finished.emit()

def _handle_auth_browser_aborted(self):
log("inside _handle_auth_browser_aborted")


def deserialize_json_response(
contents: QtCore.QByteArray,
Expand Down

0 comments on commit 65ecfb2

Please sign in to comment.