From 1b432b7b4f9fe0f52d50161589540b17e22cf14d Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Thu, 28 Jul 2016 18:30:48 +0200 Subject: [PATCH] Removing debug print Contributes to CURA-1987 --- cura/CuraApplication.py | 1 - 1 file changed, 1 deletion(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index aa9478e491..bc4378feff 100644 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -346,7 +346,6 @@ class CuraApplication(QtApplication): @pyqtSlot(str, result = QUrl) def getDefaultPath(self, key): default_path = Preferences.getInstance().getValue("local_file/%s" % key) - print(default_path) return QUrl.fromLocalFile(default_path) @pyqtSlot(str, str)