Remove 'fooled' from state file.

This commit is contained in:
Florian Bruhin 2015-04-02 14:58:34 +02:00
parent 953119ef75
commit 18b5512fe9

View File

@ -184,6 +184,8 @@ def _init_misc():
state_config.add_section(sect)
except configparser.DuplicateSectionError:
pass
# See commit a98060e020a4ba83b663813a4b9404edb47f28ad.
state_config['general'].pop('fooled', None)
objreg.register('state-config', state_config)
save_manager.add_saveable('state-config', state_config.save)