From 395f80eac684a5d3c81244c4043d0e3da14d275e Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sat, 20 Mar 2010 18:12:23 +0000 Subject: [PATCH] fix sqlite position stats again --- pyfpdb/GuiPlayerStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiPlayerStats.py b/pyfpdb/GuiPlayerStats.py index 17419fd8..f5a108c8 100644 --- a/pyfpdb/GuiPlayerStats.py +++ b/pyfpdb/GuiPlayerStats.py @@ -567,7 +567,7 @@ class GuiPlayerStats (threading.Thread): query = query.replace("", "") groupLevels = "show" not in str(limits) if groupLevels: - query = query.replace("", "-1") + query = query.replace("", "p.name") # need to use p.name for sqlite posn stats to work else: query = query.replace("", "h.gameTypeId")