Browse Source

Fix crashing when clicking the "Manage in browser"

The parenthesis should be placed at the end.
Konstantinos Karmas 3 years ago
parent
commit
f5bf88e546
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py

+ 1 - 1
plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py

@@ -334,7 +334,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice):
 
     @pyqtSlot(name="openPrintJobControlPanel")
     def openPrintJobControlPanel(self) -> None:
-        QDesktopServices.openUrl(QUrl(self.clusterCloudUrl)+ "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-browser")
+        QDesktopServices.openUrl(QUrl(self.clusterCloudUrl + "?utm_source=cura&utm_medium=software&utm_campaign=monitor-manage-browser"))
 
     @pyqtSlot(name="openPrinterControlPanel")
     def openPrinterControlPanel(self) -> None: