Traceback (most recent call last):
  File "C:\Program Files\GrampsAIO64-5.0.0-alpha2\gramps\gui\configure.py", line 1248, in autobackup_changed
    self.uistate.set_autobackup_timer()
AttributeError: 'DisplayState' object has no attribute 'set_autobackup_timer'

https://gramps-project.org/bugs/view.php?id=10098#c52129

Issue #10098
This commit is contained in:
Nick Hall 2017-06-23 12:55:33 -07:00 committed by Paul Franklin
parent d8ba3f746c
commit 3e5a90b4b1

View File

@ -1245,7 +1245,7 @@ class GrampsPreferences(ConfigureDialog):
def autobackup_changed(self, obj): def autobackup_changed(self, obj):
active = obj.get_active() active = obj.get_active()
config.set('database.autobackup', active) config.set('database.autobackup', active)
self.uistate.set_autobackup_timer() self.uistate.set_backup_timer()
def add_date_panel(self, configdialog): def add_date_panel(self, configdialog):
grid = Gtk.Grid() grid = Gtk.Grid()