From d68949680246cfdb7f7c3816e63a3302558b88a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 1 Jun 2017 16:29:49 +0200 Subject: [PATCH] Fix stupid typo causing unnecessary creation of default profile --- src/octoprint/printer/profile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/printer/profile.py b/src/octoprint/printer/profile.py index fb9493c6..989e03fe 100644 --- a/src/octoprint/printer/profile.py +++ b/src/octoprint/printer/profile.py @@ -228,7 +228,7 @@ class PrinterProfileManager(object): self._logger.info("Migrated default printer profile from settings to _default.profile: {!r}".format(default_overrides)) def _verify_default_available(self): - default_id = settings().get(["printerProfile", "default"]) + default_id = settings().get(["printerProfiles", "default"]) if default_id is None: default_id = "_default"