From d3c57ee9fcac5aab1c8e2e53bfbd0a752df2c4b5 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 11 Jul 2010 03:13:30 +0200 Subject: [PATCH] repair playerstats --- pyfpdb/fpdb.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index d97a0f75..d5dc0656 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -103,7 +103,7 @@ import GuiLogView import GuiDatabase import GuiBulkImport import ImapSummaries -import GuiRingPlayerStats +import GuiPlayerStats import GuiTourneyPlayerStats import GuiPositionalStats import GuiTableViewer @@ -860,7 +860,7 @@ class fpdb: self.add_and_display_tab(bulk_tab, "Bulk Import") def tab_ring_player_stats(self, widget, data=None): - new_ps_thread = GuiRingPlayerStats.GuiRingPlayerStats(self.config, self.sql, self.window) + new_ps_thread = GuiPlayerStats.GuiPlayerStats(self.config, self.sql, self.window) self.threads.append(new_ps_thread) ps_tab=new_ps_thread.get_vbox() self.add_and_display_tab(ps_tab, "Ring Player Stats")