misc/migration/3.15.0_common.py
author Aurelien Campeas
Thu, 11 Jul 2013 13:32:27 +0200
changeset 9293 723e2c586ea3
parent 8410 eb6a607a0067
permissions -rw-r--r--
[entity] Entity.related(): add a targettypes argument (closes #2957313) This allows to restrict the entity types returned by the method (passed to cw_related_rql). When such an argument is given, no caching happens.

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