From 3e5a90b4b1629806a7a615aef8f856a3a34b37b5 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Fri, 23 Jun 2017 12:55:33 -0700 Subject: [PATCH] typo 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 --- gramps/gui/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gui/configure.py b/gramps/gui/configure.py index f9633382f..fad31505b 100644 --- a/gramps/gui/configure.py +++ b/gramps/gui/configure.py @@ -1245,7 +1245,7 @@ class GrampsPreferences(ConfigureDialog): def autobackup_changed(self, obj): active = obj.get_active() config.set('database.autobackup', active) - self.uistate.set_autobackup_timer() + self.uistate.set_backup_timer() def add_date_panel(self, configdialog): grid = Gtk.Grid()