# HG changeset patch # User Edouard Tisserant # Date 1547039342 -3600 # Node ID 6cd7dae360d4d571ed82d9ed76dcf9e0a4f103e2 # Parent 8efa26af791d68d76c9efeffbbb2a1f086470e9f fixed exception happening when connecting to empty URI, and set URI through URI Editor Dialog popping up becaue empty. diff -r 8efa26af791d -r 6cd7dae360d4 ProjectController.py --- a/ProjectController.py Mon Jan 07 13:50:39 2019 +0100 +++ b/ProjectController.py Wed Jan 09 14:09:02 2019 +0100 @@ -1752,7 +1752,7 @@ # Launch Service Discovery dialog dialog = UriEditor(self.AppFrame, self) answer = dialog.ShowModal() - uri = dialog.GetURI() + uri = str(dialog.GetURI()) dialog.Destroy() except Exception: self.logger.write_error(_("Local service discovery failed!\n"))