Defaults to check once a week, everything, enable logging

svn: r15735
This commit is contained in:
Doug Blank 2010-08-14 18:16:10 +00:00
parent 7109925ffb
commit 4617fa8f50
2 changed files with 3 additions and 3 deletions

View File

@ -127,8 +127,8 @@ register('behavior.addmedia-relative-path', False)
register('behavior.autoload', False)
register('behavior.avg-generation-gap', 20)
register('behavior.betawarn', False)
register('behavior.check-for-updates', 0)
register('behavior.check-for-update-types', ["update"])
register('behavior.check-for-updates', 2)
register('behavior.check-for-update-types', ["update", "new"])
register('behavior.last-check-for-updates', "1970/01/01")
register('behavior.database-path', os.path.join( const.HOME_DIR, 'grampsdb'))
register('behavior.date-about-range', 50)

View File

@ -400,7 +400,7 @@ class ViewManager(CLIManager):
def install_addons(self, obj):
for row in self.list.model: # treemodelrow
if row[0]: # toggle
load_addon_file(row[4], callback=print)
load_addon_file(row[4], callback=LOG.debug)
self.update_dialog.destroy()
def _errordialog(title, errormessage):