Added missing return statement that caused an exception

master
Gina Häußge 2013-06-27 21:05:01 +02:00
parent c9fb4e1ded
commit 24bb0fdf05
1 changed files with 1 additions and 0 deletions

View File

@ -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)