misc/migration/3.15.0_common.py
author Nicolas Chauvat <nicolas.chauvat@logilab.fr>
Tue, 10 Dec 2013 11:36:04 +0100
changeset 9342 e148583db39e
parent 8410 eb6a607a0067
permissions -rw-r--r--
[skeleton i18n] Add PO-Revision-Date header to make emacs po-mode happy Closes #3276389

import ConfigParser
try:
    undo_actions = config.cfgfile_parser.get('MAIN', 'undo-support', False)
except ConfigParser.NoOptionError:
    pass # this conf. file was probably already migrated
else:
    config.global_set_option('undo-enabled', bool(undo_actions))