diff --git a/octoprint/settings.py b/octoprint/settings.py index 71251b4..f260667 100644 --- a/octoprint/settings.py +++ b/octoprint/settings.py @@ -239,6 +239,7 @@ class Settings(object): def setInt(self, path, value, force=False): if value is None: self.set(path, None, force) + return try: intValue = int(value)