From 8f3b6dca79faf810717f0b90d45b506332c42649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 25 Jan 2017 16:21:15 +0100 Subject: [PATCH] Fix stupid typo --- src/octoprint/server/api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/server/api/__init__.py b/src/octoprint/server/api/__init__.py index 6f6f37d5..473560b0 100644 --- a/src/octoprint/server/api/__init__.py +++ b/src/octoprint/server/api/__init__.py @@ -153,7 +153,7 @@ def wizardFinish(): if name in handled: seen_wizards[name] = implementation.get_wizard_version() except: - logging.getLogger(__name__).exceptino("There was an error finishing the wizard for {}, ignoring".format(name)) + logging.getLogger(__name__).exception("There was an error finishing the wizard for {}, ignoring".format(name)) s().set(["server", "seenWizards"], seen_wizards) s().save()