Re-enable warning during devel stage on trunk

This commit is contained in:
Jérôme Rapinat 2014-02-10 16:06:07 +01:00
parent a343b96093
commit 9dc976f28d
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ register('behavior.addmedia-image-dir', '')
register('behavior.addmedia-relative-path', False) register('behavior.addmedia-relative-path', False)
register('behavior.autoload', False) register('behavior.autoload', False)
register('behavior.avg-generation-gap', 20) register('behavior.avg-generation-gap', 20)
register('behavior.betawarn', True) register('behavior.betawarn', False)
register('behavior.check-for-updates', 0) register('behavior.check-for-updates', 0)
register('behavior.check-for-update-types', ["new"]) register('behavior.check-for-update-types', ["new"])
register('behavior.last-check-for-updates', "1970/01/01") register('behavior.last-check-for-updates', "1970/01/01")

View File

@ -231,7 +231,7 @@ def _display_welcome_message():
"them with this version, and make sure to export your " "them with this version, and make sure to export your "
"data to XML every now and then.")) "data to XML every now and then."))
config.set('behavior.autoload', False) config.set('behavior.autoload', False)
# config.set('behavior.betawarn', True) config.set('behavior.betawarn', True)
config.set('behavior.betawarn', config.get('behavior.betawarn')) config.set('behavior.betawarn', config.get('behavior.betawarn'))
#------------------------------------------------------------------------- #-------------------------------------------------------------------------