From 5e23b55361b855efb50efdd3ce802a5f44d60594 Mon Sep 17 00:00:00 2001 From: eblade Date: Tue, 9 Dec 2008 08:35:19 -0500 Subject: [PATCH] specify right function name to timer, duh --- pyfpdb/Hud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index a98c1421..dcc7298c 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -225,7 +225,7 @@ class Hud: aux_params = config.get_aux_parameters(game_params['aux']) self.aux_windows.append(eval("%s.%s(gtk.Window(), config, 'fpdb')" % (aux_params['module'], aux_params['class']))) - gobject.timeout_add(0.5, update_table_position) + gobject.timeout_add(0.5, self.update_table_position) def update(self, hand, config, stat_dict): self.hand = hand # this is the last hand, so it is available later