Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

10-31-2011 , 02:23 AM
Quote:
Originally Posted by Xenomanes
Problem with Ongame network (bwin.it)

The bulk inport don't work. (fpdb=0.25 locale=it_IT.UTF-8 debian=testing python=2.7.2). I think there are 2 problems: locale + an error in ongame filter.

I solved and I can import only if I use BOTH the workaround above:

1) I launch fpdb with the command:
LANG=en_US.utf8 fpdb

2) I convert my handhistory with the command:
sed -i "s/CEST/GMT+0200/" ~/P5JavaClientSettings/handhistory/handhistory0.txt

This is the begin of an Ongame's original uncoverted handhistory (it blocks fpdb with Italian locale AND with US locale):
Code:
***** History for hand R5-52705698-18 *****
Start hand: Sat Oct 29 08:44:30 CEST 2011
Table: Valverde [52705698] (NO_LIMIT TEXAS_HOLDEM €0.02/€0.05, Real money)
This is the begin of an converted handhistory (it blocks fpdb with Italian locale but works very well with US locale):
Code:
***** History for hand R5-52705698-18 *****
Start hand: Sat Oct 29 08:44:30 GMT+0200 2011
Table: Valverde [52705698] (NO_LIMIT TEXAS_HOLDEM €0.02/€0.05, Real money)
To have HUD-autoimport I set fpdb to import from ~/handhistory_converted and I put on my crontab this:
Code:
0-59/1 * * * * /home/LINUXUSERNAME/bin/converti_handhistory.sh
this is converti_handhistory.sh
Code:
#!/bin/bash

conv.func () {
if [ /home/LINUXUSERNAME/P5JavaClientSettings/handhistory/handhistory0.txt -nt /home/LINUXUSERNAME/handhistory_converted/handhistory000.txt ] ; then

  cat /home/LINUXUSERNAME/P5JavaClientSettings/handhistory/handhistory0.txt \
    | sed "s/^\(Start hand: .*\)CEST\(.*\)/\1GMT+0200\2/" \
    | sed "s/^\(Start hand: .*\)CET\(.*\)/\1GMT+0100\2/" \
    > /home/LINUXUSERNAME/handhistory_converted/handhistory000.txt

fi
}

###### MAIN
conv.func
        sleep 20
conv.func
        sleep 20
conv.func


P.S.
Italian windows client of ongame network don't run on wine.
I use the HUD with Java online client inside firefox. I search on google but no people use fpdb + firefox. If anybody wants know how to this, ask me.
(sorry for my poor English)
Nice work

The last stable release was 0.26 on 4 Aug, and there is a patch specifically addressing your issue on 5 Aug.

Quote:
commit be4fee60122ab27d532d9fc4c131c423d9a0d080
Author: Steffen Schaumburg <steffen@schaumburger.info>
Date: Fri Aug 5 22:15:51 2011 +0200

support OnGame date format without numeric time offset and support CEST tz
So this issue should be sorted in any snapshots after that date.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
10-31-2011 , 03:18 AM
Quote:
Originally Posted by Krysz1
playername: tablename - Texas Hold'em, No Limit - stakes ($0.05/$0.10)

Do you get it?
What about the window that the hud is actually attaching too?

Quote:
Originally Posted by Exhibit_A
Does fpdb work with 888? I have read a ton of threads but haven't found any reference

Thanks

Andy
Yes and no.

There is a PacificPoker converter, that is known to be broken.

To quote an email of mine:

Code:
This hand history format is screwed, 'raises' is ambiguous.

Preflop:

Dealt to Hero [ 9d, 2d ]
player03 folds
player04 raises [1] - Max bet is 2, this is an addRaiseBy
Hero calls [2]
player05 raises [3] - Max bet is 3, this is an addRaiseTo
player06 calls [2]
player07 calls [3]
player01 folds
player02 calls [2]
player04 raises [2] - Max bet is 4, this is an addCallAndRaise
Hero calls [2]
player05 calls [1]
player06 calls [1]
player07 calls [1]
player02 calls [1]
It can be fixed, but no effort has gone towards it yet.

Quote:
Originally Posted by omaha8grinding
For those who have problems with tournament summaries.

I kept my Pokerstars time as my local time and it wont upload tournament summaries. But then changed it to ET time and it started to work. Uploader just got stuck and nothing happened (importing 0 of 1 and never finished).
Hmm, yeah there is a difference between how the dates are handled between the hh and summary parsers.

I've created a bug entry http://****************/apps/mantisbt...iew.php?id=121

I'll try and get that sorted before the mext release.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
10-31-2011 , 05:30 PM
Hi, I was wondering if your program supports Merge Network Draw poker games??

Thanks,
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
10-31-2011 , 05:35 PM
Quote:
Originally Posted by Julebag
Hi, I was wondering if your program supports Merge Network Draw poker games??

Thanks,
That it does.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
10-31-2011 , 05:51 PM
^^^ Awesome thanks!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-02-2011 , 10:41 AM
hi guys,
I need a little help here,
I'm trying to make a few small modifications to the fpdb but before that i wanted to see if everything was working, so I got the source code (v0.26) using GIT.

my problem is this, once i package it using .../windows/py2exe_setup.py and run the program, it always freezes when trying to import the hand histories.
can anyone help me?
I havent changed any of the files that i got so is there some setup i'm missing?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-03-2011 , 01:52 AM
Hi, I'm very interested in the program, but I can not run the HUD. install the program on arch linux from the AUR, run pokerstars with wine and postgresql on the same OS. The program imports hands well, and says it is connected to postgresql, but does not show the HUD. the log message says this: "ERROR: Import: Failde hand to send to HUD: [Errno 32] Broken pipe"

any help? any idea where to find the problem?

thanks
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-03-2011 , 02:32 PM
Quote:
Originally Posted by Gayooseman
hi guys,


my problem is this, once i package it using .../windows/py2exe_setup.py and run the program, it always freezes when trying to import the hand histories.
can anyone help me?
I havent changed any of the files that i got so is there some setup i'm missing?
Hi,

If you are just setting up a development environment, there is no need to package every time - the packaging is normally only done to to release work to the world.

As a developer, you can just run fpdb from source.

The basic setup instructions are here http://****************/apps/mediawik...indows_Install - essentially, you need to install a bunch of dependencies, pull the latest code from the repo and that's about it.

If you find issues, join us on http://webchat.freenode.net/?channels=fpdb and we can give some live help.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-03-2011 , 02:42 PM
Quote:
Originally Posted by mrtnfs
Hi, I'm very interested in the program, but I can not run the HUD. install the program on arch linux from the AUR, run pokerstars with wine and postgresql on the same OS. The program imports hands well, and says it is connected to postgresql, but does not show the HUD. the log message says this: "ERROR: Import: Failde hand to send to HUD: [Errno 32] Broken pipe"

any help? any idea where to find the problem?

thanks
Not sure who packaged the AUR, so can't answer directly. The hud runs as a separate process, and I think there are a couple of tweaks you can try to get it running.

Try this: Locate the file HUD_main.pyw, edit it, and change the first line from #!/usr/bin/env python to #!/usr/bin/env python2

Finally, set the HUD_main.pyw file to executable (chmod +x)

Join us at http://webchat.freenode.net/?channels=fpdb if you want to get some live support to get this working.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-03-2011 , 03:10 PM
Quote:
Originally Posted by gimick
Not sure who packaged the AUR, so can't answer directly. The hud runs as a separate process, and I think there are a couple of tweaks you can try to get it running.

Try this: Locate the file HUD_main.pyw, edit it, and change the first line from #!/usr/bin/env python to #!/usr/bin/env python2

Finally, set the HUD_main.pyw file to executable (chmod +x)

Join us at http://webchat.freenode.net/?channels=fpdb if you want to get some live support to get this working.
Just asked on the fpdb channel, you need to do one more thing:

Please install package python-wnck too
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-05-2011 , 12:38 PM
Quote:
Originally Posted by j0j0
hi, there.
I have a problem with versions 0.25 and 0.26.1 (didnt test 0.26):
When I rearrange the HUD player/opponent stats positions, save layout and kill the HUD, the reappearing HUD will have the player/opp stats at a slightly different position, though I didnt change window size or position.
Problem doesn't occur with v. 024, so for the moment I use this version.
(I play STTs and MTTs on stars, only one game at a time)

Anyways, thanks for this GREAT software
I have this problem too.
How can I solve this?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-05-2011 , 01:32 PM
As Carbon wasn't working, I gave Minted[ELG] a go.
Still no HUD....
Using .26+GIT in a XP VM on Ubuntu 10.10

Am I doing something wrong?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-05-2011 , 05:47 PM
I am interested in getting this thing up and running but I have no idea how. I am not interested in the HUD, I just want to be able to track my play on the Merge network for all games, draw, stud and flop. Anyone that wants to make a couple of bucks send me a pm.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-05-2011 , 08:28 PM
Hello, My problem is:

I cant see the HUD in tourneys in PokerStars....
I cant save the graphics (only can to create directory)
Can see the hans played?


Thank you for your response...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-06-2011 , 06:19 AM
Quote:
Originally Posted by SlX
Quote:
I have a problem with versions 0.25 and 0.26.1 (didnt test 0.26):
When I rearrange the HUD player/opponent stats positions, save layout and kill the HUD, the reappearing HUD will have the player/opp stats at a slightly different position, though I didnt change window size or position.
Problem doesn't occur with v. 024, so for the moment I use this version.
(I play STTs and MTTs on stars, only one game at a time)
I have this problem too.
How can I solve this?
Does the change work after you restart fpdb?

Quote:
Originally Posted by AugustWest7
As Carbon wasn't working, I gave Minted[ELG] a go.
Still no HUD....
Using .26+GIT in a XP VM on Ubuntu 10.10

Am I doing something wrong?
To clarify, you are trying to get the HUD working using the windows .exe version (fpdb-git-20111101-54543d3.exe or
fpdb-git-20111017-15f2863.exe) in an XP VM

Unlikely you are doing something wrong. We dont currently have any developers playing Carbon so we aren't sure if this is working at all.

Is there anything in the log files? I'm hoping the HUD-log.txt particularly will shed some light - can you post the log file please?

Quote:
Originally Posted by Morph3us
I am interested in getting this thing up and running but I have no idea how. I am not interested in the HUD, I just want to be able to track my play on the Merge network for all games, draw, stud and flop. Anyone that wants to make a couple of bucks send me a pm.
Most of the hands from Merge import without issue in the recent snapshots after a generous donation of hh's early this year (I still need samples of Omaha Hilo, Stud 8, 5 Card Draw, and 2-7 Single Draw)

See discussion with AugustWest7 re: Merge + HUD at the moment.

Quote:
Originally Posted by Nicaindio
Hello, My problem is:

I cant see the HUD in tourneys in PokerStars....
I cant save the graphics (only can to create directory)
Can see the hans played?


Thank you for your response...
I'm really not sure what you are attempting to do here.

What version of fpdb are you using? what version of windows? Are you running auto-import? Have you configured the Stars client to record hand histories to file?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-06-2011 , 03:52 PM
Quote:
Originally Posted by sorrow
Does the change work after you restart fpdb?
No (but this looks like a different bug). I'm using 0.25. I moved the stat window for Seat 5 of an 8-man table to the bottom left corner and saved. After restarting, it moves - the amount varies depending on the size and existence of the table window's title bar and borders. If they're disabled (AHK: WinSet, Style, -0xC40000, A) it moves 29 pixels up and 3 pixels left. With the default Aero theme in Windows 7, it moves a few pixels right. With my much shrunken title bar and borders, it moves 17 pixels up.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-07-2011 , 10:45 PM
Hi Sorrow,

Host OS is Ubuntu 10.10 and XP is running in VM.
I'm using fpdb-git-20111101-54543d3.exe

Is there a way to totally remove sites? ie FTP, win2day etc....

Here is HUD-log followed by fpdb-log:


Code:
2011-10-15 21:19:26,506 - hud          DEBUG    hud logger initialised
2011-10-15 21:19:26,506 - hud          INFO     HUD_main starting: Using db name = None
2011-10-15 21:19:26,506 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-15 21:19:26,506 - hud          INFO     Any major error will be reported there _only_.
2011-10-15 21:19:26,506 - hud          INFO     HUD_main starting
2011-10-15 21:19:26,546 - db           DEBUG    Creating Database instance, sql = None
2011-10-15 21:19:26,732 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-15 21:23:51,200 - hud          INFO     Quitting normally
2011-10-16 08:00:46,270 - hud          DEBUG    hud logger initialised
2011-10-16 08:00:47,450 - hud          DEBUG    hud logger initialised
2011-10-16 08:00:47,450 - hud          INFO     HUD_main starting: Using db name = None
2011-10-16 08:00:47,450 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-16 08:00:47,450 - hud          INFO     Any major error will be reported there _only_.
2011-10-16 08:00:47,450 - hud          INFO     HUD_main starting
2011-10-16 08:00:47,505 - db           DEBUG    Creating Database instance, sql = None
2011-10-16 08:00:47,670 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-16 08:19:51,496 - hud          DEBUG    hud logger initialised
2011-10-16 08:19:51,957 - hud          DEBUG    hud logger initialised
2011-10-16 08:19:51,957 - hud          INFO     HUD_main starting: Using db name = None
2011-10-16 08:19:51,957 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-16 08:19:51,957 - hud          INFO     Any major error will be reported there _only_.
2011-10-16 08:19:51,967 - hud          INFO     HUD_main starting
2011-10-16 08:19:52,007 - db           DEBUG    Creating Database instance, sql = None
2011-10-16 08:19:52,167 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-16 08:22:18,812 - hud          DEBUG    Received hand no 42
2011-10-16 08:22:18,822 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:22:18,822 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:22:18,980 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-16 08:22:18,980 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-16 08:22:18,980 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-16 08:22:18,980 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-16 08:22:19,079 - hud          INFO     Creating hud from hand 42
2011-10-16 08:22:19,278 - hud          DEBUG    Received hand no 43
2011-10-16 08:22:19,278 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:22:19,288 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:22:19,357 - hud          DEBUG    Received hand no 44
2011-10-16 08:22:19,357 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:22:19,357 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:22:19,367 - hud          DEBUG    Received hand no 45
2011-10-16 08:22:19,367 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:22:19,377 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:22:58,493 - hud          DEBUG    Received hand no 46
2011-10-16 08:22:58,493 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:22:58,493 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:23:48,565 - hud          DEBUG    Received hand no 47
2011-10-16 08:23:48,565 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:23:48,565 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:24:18,763 - hud          DEBUG    Received hand no 48
2011-10-16 08:24:18,773 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:24:18,773 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:25:09,312 - hud          DEBUG    Received hand no 49
2011-10-16 08:25:09,322 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:25:09,322 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:25:39,826 - hud          DEBUG    Received hand no 50
2011-10-16 08:25:39,826 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:25:39,826 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:26:20,035 - hud          DEBUG    Received hand no 51
2011-10-16 08:26:20,046 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:26:20,046 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:33:49,743 - hud          DEBUG    hud logger initialised
2011-10-16 08:33:50,194 - hud          DEBUG    hud logger initialised
2011-10-16 08:33:50,194 - hud          INFO     HUD_main starting: Using db name = None
2011-10-16 08:33:50,194 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-16 08:33:50,194 - hud          INFO     Any major error will be reported there _only_.
2011-10-16 08:33:50,204 - hud          INFO     HUD_main starting
2011-10-16 08:33:50,244 - db           DEBUG    Creating Database instance, sql = None
2011-10-16 08:33:50,464 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-16 08:34:58,517 - hud          DEBUG    Received hand no 52
2011-10-16 08:34:58,529 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:34:58,529 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:34:58,617 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-16 08:34:58,617 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-16 08:34:58,617 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-16 08:34:58,617 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-16 08:34:58,694 - hud          INFO     Creating hud from hand 52
2011-10-16 08:34:59,344 - hud          INFO     Creating hud from hand 52
2011-10-16 08:34:59,410 - hud          ERROR    Error creating HUD for hand 52.
Traceback (most recent call last):
  File "HUD_main.pyw", line 351, in idle_create
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:35:07,519 - hud          DEBUG    Received hand no 53
2011-10-16 08:35:07,519 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:35:07,519 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:35:07,539 - hud          INFO     Creating hud from hand 53
2011-10-16 08:35:07,539 - hud          ERROR    Error updating HUD for hand 53.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:35:17,525 - hud          DEBUG    Received hand no 54
2011-10-16 08:35:17,525 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:35:17,525 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:35:17,533 - hud          INFO     Creating hud from hand 54
2011-10-16 08:35:17,542 - hud          ERROR    Error updating HUD for hand 54.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:35:38,104 - hud          DEBUG    Received hand no 55
2011-10-16 08:35:38,115 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:35:38,125 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:35:38,157 - hud          INFO     Creating hud from hand 55
2011-10-16 08:35:38,157 - hud          ERROR    Error updating HUD for hand 55.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:36:07,805 - hud          DEBUG    Received hand no 56
2011-10-16 08:36:07,805 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:36:07,805 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:36:07,825 - hud          INFO     Creating hud from hand 56
2011-10-16 08:36:07,825 - hud          ERROR    Error updating HUD for hand 56.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:36:17,869 - hud          DEBUG    Received hand no 57
2011-10-16 08:36:17,869 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:36:17,869 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:36:37,908 - hud          DEBUG    Received hand no 58
2011-10-16 08:36:37,918 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:36:37,918 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:36:58,658 - hud          DEBUG    Received hand no 59
2011-10-16 08:36:58,658 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:36:58,667 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:36:58,667 - hud          DEBUG    Received hand no 60
2011-10-16 08:36:58,667 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:36:58,667 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:37:18,776 - hud          DEBUG    Received hand no 61
2011-10-16 08:37:18,776 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:37:18,786 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:37:18,805 - hud          INFO     Creating hud from hand 61
2011-10-16 08:37:18,805 - hud          ERROR    Error updating HUD for hand 61.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:37:28,857 - hud          DEBUG    Received hand no 62
2011-10-16 08:37:28,857 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:37:28,857 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:37:28,921 - hud          INFO     Creating hud from hand 62
2011-10-16 08:37:28,931 - hud          ERROR    Error updating HUD for hand 62.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:37:58,936 - hud          DEBUG    Received hand no 63
2011-10-16 08:37:58,936 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:37:58,936 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:37:58,967 - hud          INFO     Creating hud from hand 63
2011-10-16 08:37:58,967 - hud          ERROR    Error updating HUD for hand 63.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:38:19,005 - hud          DEBUG    Received hand no 64
2011-10-16 08:38:19,015 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:38:19,015 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:38:19,045 - hud          INFO     Creating hud from hand 64
2011-10-16 08:38:19,045 - hud          ERROR    Error updating HUD for hand 64.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:38:29,420 - hud          DEBUG    Received hand no 65
2011-10-16 08:38:29,420 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:38:29,420 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:38:29,430 - hud          INFO     Creating hud from hand 65
2011-10-16 08:38:29,440 - hud          ERROR    Error updating HUD for hand 65.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:38:49,990 - hud          DEBUG    Received hand no 66
2011-10-16 08:38:50,000 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:38:50,000 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:38:50,019 - hud          INFO     Creating hud from hand 66
2011-10-16 08:38:50,019 - hud          ERROR    Error updating HUD for hand 66.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:39:21,068 - hud          DEBUG    Received hand no 67
2011-10-16 08:39:21,068 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:39:21,068 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:39:21,104 - hud          INFO     Creating hud from hand 67
2011-10-16 08:39:21,112 - hud          ERROR    Error updating HUD for hand 67.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:41:34,888 - hud          DEBUG    hud logger initialised
2011-10-16 08:41:35,522 - hud          DEBUG    hud logger initialised
2011-10-16 08:41:35,522 - hud          INFO     HUD_main starting: Using db name = None
2011-10-16 08:41:35,522 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-16 08:41:35,522 - hud          INFO     Any major error will be reported there _only_.
2011-10-16 08:41:35,532 - hud          INFO     HUD_main starting
2011-10-16 08:41:35,700 - db           DEBUG    Creating Database instance, sql = None
2011-10-16 08:41:35,769 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-16 08:43:32,154 - hud          DEBUG    Received hand no 68
2011-10-16 08:43:32,154 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:43:32,154 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:43:32,262 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-16 08:43:32,262 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-16 08:43:32,262 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-16 08:43:32,262 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-16 08:43:32,279 - hud          INFO     Creating hud from hand 68
2011-10-16 08:43:32,762 - hud          INFO     Creating hud from hand 68
2011-10-16 08:43:32,842 - hud          ERROR    Error creating HUD for hand 68.
Traceback (most recent call last):
  File "HUD_main.pyw", line 351, in idle_create
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:44:02,089 - hud          DEBUG    Received hand no 69
2011-10-16 08:44:02,089 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:44:02,099 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:44:02,130 - hud          INFO     Creating hud from hand 69
2011-10-16 08:44:02,130 - hud          ERROR    Error updating HUD for hand 69.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:45:13,658 - hud          DEBUG    Received hand no 70
2011-10-16 08:45:13,680 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:45:13,680 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:45:13,736 - hud          INFO     Creating hud from hand 70
2011-10-16 08:45:13,736 - hud          ERROR    Error updating HUD for hand 70.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 694, in update
KeyError: 0
2011-10-16 08:46:04,236 - hud          DEBUG    set_player_aggregation 10000
2011-10-16 08:46:20,430 - hud          INFO     Creating hud from hand 70
2011-10-16 08:46:20,520 - hud          INFO     Creating hud from hand 70
2011-10-16 08:46:33,358 - hud          DEBUG    Received hand no 71
2011-10-16 08:46:33,368 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:46:33,368 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:46:33,388 - hud          ERROR    Error: self.window doesn't exist.
2011-10-16 08:46:33,388 - hud          ERROR    Error: self.window doesn't exist.
2011-10-16 08:46:33,388 - hud          ERROR    Error: self.window doesn't exist.
2011-10-16 08:46:33,388 - hud          ERROR    Error: self.window doesn't exist.
2011-10-16 08:46:33,388 - hud          ERROR    Error: self.window doesn't exist.
2011-10-16 08:46:33,388 - hud          ERROR    Can't find table Play Money
2011-10-16 08:46:33,398 - hud          ERROR    HUD create: table name Play Money not found, skipping.
2011-10-16 08:52:53,970 - hud          DEBUG    hud logger initialised
2011-10-16 08:52:54,542 - hud          DEBUG    hud logger initialised
2011-10-16 08:52:54,553 - hud          INFO     HUD_main starting: Using db name = None
2011-10-16 08:52:54,553 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-16 08:52:54,553 - hud          INFO     Any major error will be reported there _only_.
2011-10-16 08:52:54,553 - hud          INFO     HUD_main starting
2011-10-16 08:52:54,720 - db           DEBUG    Creating Database instance, sql = None
2011-10-16 08:52:54,874 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-16 08:57:57,766 - hud          DEBUG    Received hand no 72
2011-10-16 08:57:57,766 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-16 08:57:57,766 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-16 08:57:57,910 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-16 08:57:57,910 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-16 08:57:57,910 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-16 08:57:57,910 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-16 08:57:58,063 - hud          INFO     Creating hud from hand 72
2011-10-16 08:57:58,703 - hud          ERROR    Error creating HUD for hand 72.
Traceback (most recent call last):
  File "HUD_main.pyw", line 351, in idle_create
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 15:56:05,214 - hud          DEBUG    hud logger initialised
2011-10-20 15:56:05,710 - hud          DEBUG    hud logger initialised
2011-10-20 15:56:05,710 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 15:56:05,710 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 15:56:05,710 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 15:56:05,710 - hud          INFO     HUD_main starting
2011-10-20 15:56:06,088 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 15:56:06,177 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 16:30:47,339 - hud          DEBUG    hud logger initialised
2011-10-20 16:30:47,572 - hud          DEBUG    hud logger initialised
2011-10-20 16:30:47,572 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 16:30:47,572 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 16:30:47,572 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 16:30:47,572 - hud          INFO     HUD_main starting
2011-10-20 16:30:47,601 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 16:30:47,651 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 16:32:47,453 - hud          DEBUG    Received hand no 73
2011-10-20 16:32:47,453 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:32:47,513 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:32:47,684 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-20 16:32:47,684 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-20 16:32:47,684 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-20 16:32:47,684 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-20 16:32:47,720 - hud          INFO     Creating hud from hand 73
2011-10-20 16:32:48,378 - hud          ERROR    Error creating HUD for hand 73.
Traceback (most recent call last):
  File "HUD_main.pyw", line 351, in idle_create
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:33:47,404 - hud          DEBUG    Received hand no 74
2011-10-20 16:33:47,411 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:33:47,411 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:33:47,411 - hud          ERROR    Error updating HUD for hand 74.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:34:17,466 - hud          DEBUG    Received hand no 75
2011-10-20 16:34:17,466 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:34:17,466 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:34:17,474 - hud          ERROR    Error updating HUD for hand 75.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:34:57,849 - hud          DEBUG    Received hand no 76
2011-10-20 16:34:57,849 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:34:57,849 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:34:57,864 - hud          ERROR    Error updating HUD for hand 76.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:34:59,596 - hud          DEBUG    set_player_aggregation 10000
2011-10-20 16:35:58,450 - hud          DEBUG    Received hand no 77
2011-10-20 16:35:58,450 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:35:58,467 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:35:58,467 - hud          ERROR    Error updating HUD for hand 77.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:36:19,351 - hud          DEBUG    set_opponent_aggregation 10000
2011-10-20 16:37:08,966 - hud          DEBUG    Received hand no 78
2011-10-20 16:37:08,966 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:37:08,966 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:37:08,979 - hud          ERROR    Error updating HUD for hand 78.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:38:19,046 - hud          DEBUG    Received hand no 79
2011-10-20 16:38:19,046 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:38:19,088 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:38:19,098 - hud          ERROR    Error updating HUD for hand 79.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:39:19,220 - hud          DEBUG    Received hand no 80
2011-10-20 16:39:19,220 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:39:19,220 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:39:19,230 - hud          ERROR    Error updating HUD for hand 80.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:40:09,315 - hud          DEBUG    Received hand no 81
2011-10-20 16:40:09,325 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:40:09,325 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:40:09,335 - hud          ERROR    Error updating HUD for hand 81.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:41:19,489 - hud          DEBUG    Received hand no 82
2011-10-20 16:41:19,499 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:41:19,499 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:41:19,499 - hud          ERROR    Error updating HUD for hand 82.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 16:42:59,726 - hud          DEBUG    Received hand no 83
2011-10-20 16:42:59,726 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 16:42:59,726 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 16:42:59,749 - hud          ERROR    Error updating HUD for hand 83.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:06:50,394 - hud          DEBUG    hud logger initialised
2011-10-20 17:06:50,717 - hud          DEBUG    hud logger initialised
2011-10-20 17:06:50,717 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 17:06:50,717 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 17:06:50,717 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 17:06:50,717 - hud          INFO     HUD_main starting
2011-10-20 17:06:50,757 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 17:06:50,865 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 17:07:25,971 - hud          DEBUG    hud logger initialised
2011-10-20 17:07:26,362 - hud          DEBUG    hud logger initialised
2011-10-20 17:07:26,362 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 17:07:26,362 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 17:07:26,362 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 17:07:26,362 - hud          INFO     HUD_main starting
2011-10-20 17:07:26,413 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 17:07:26,532 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 17:09:00,601 - hud          DEBUG    hud logger initialised
2011-10-20 17:09:00,980 - hud          DEBUG    hud logger initialised
2011-10-20 17:09:00,990 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 17:09:00,990 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 17:09:00,990 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 17:09:00,990 - hud          INFO     HUD_main starting
2011-10-20 17:09:01,030 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 17:09:01,131 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 17:10:28,059 - hud          DEBUG    Received hand no 84
2011-10-20 17:10:28,059 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:10:28,059 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:10:28,089 - hud          ERROR    Error: self.window doesn't exist.
2011-10-20 17:10:28,099 - hud          ERROR    Error: self.window doesn't exist.
2011-10-20 17:10:28,099 - hud          ERROR    Error: self.window doesn't exist.
2011-10-20 17:10:28,099 - hud          ERROR    Error: self.window doesn't exist.
2011-10-20 17:10:28,099 - hud          ERROR    Error: self.window doesn't exist.
2011-10-20 17:10:28,099 - hud          ERROR    Can't find table Play Money
2011-10-20 17:10:28,099 - hud          ERROR    HUD create: table name Play Money not found, skipping.
2011-10-20 17:12:36,576 - hud          DEBUG    hud logger initialised
2011-10-20 17:12:38,039 - hud          DEBUG    hud logger initialised
2011-10-20 17:12:38,039 - hud          INFO     HUD_main starting: Using db name = None
2011-10-20 17:12:38,039 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-20 17:12:38,039 - hud          INFO     Any major error will be reported there _only_.
2011-10-20 17:12:38,048 - hud          INFO     HUD_main starting
2011-10-20 17:12:38,105 - db           DEBUG    Creating Database instance, sql = None
2011-10-20 17:12:38,539 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-20 17:15:09,802 - hud          DEBUG    Received hand no 85
2011-10-20 17:15:09,822 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:15:09,822 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:15:09,892 - hud          DEBUG    setting self.hud_params[h_seats_style] = A
2011-10-20 17:15:09,892 - hud          DEBUG    setting self.hud_params[seats_style] = A
2011-10-20 17:15:09,892 - hud          DEBUG    setting self.hud_params[h_hud_style] = S
2011-10-20 17:15:09,892 - hud          DEBUG    setting self.hud_params[hud_style] = A
2011-10-20 17:15:09,913 - hud          INFO     Creating hud from hand 85
2011-10-20 17:15:10,604 - hud          ERROR    Error creating HUD for hand 85.
Traceback (most recent call last):
  File "HUD_main.pyw", line 351, in idle_create
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:16:09,960 - hud          DEBUG    Received hand no 86
2011-10-20 17:16:09,970 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:16:09,970 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:16:09,979 - hud          ERROR    Error updating HUD for hand 86.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:16:30,164 - hud          DEBUG    Received hand no 87
2011-10-20 17:16:30,164 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:16:30,164 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:16:30,186 - hud          ERROR    Error updating HUD for hand 87.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:17:20,288 - hud          DEBUG    Received hand no 88
2011-10-20 17:17:20,288 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:17:20,288 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:17:20,298 - hud          ERROR    Error updating HUD for hand 88.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:18:50,448 - hud          DEBUG    Received hand no 89
2011-10-20 17:18:50,459 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:18:50,459 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:18:50,479 - hud          ERROR    Error updating HUD for hand 89.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:19:40,529 - hud          DEBUG    Received hand no 90
2011-10-20 17:19:40,529 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:19:40,529 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:19:40,539 - hud          ERROR    Error updating HUD for hand 90.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:21:31,059 - hud          DEBUG    Received hand no 91
2011-10-20 17:21:31,059 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:21:31,069 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:21:31,078 - hud          ERROR    Error updating HUD for hand 91.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:23:21,286 - hud          DEBUG    Received hand no 92
2011-10-20 17:23:21,286 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:23:21,286 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:23:21,305 - hud          ERROR    Error updating HUD for hand 92.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:24:11,394 - hud          DEBUG    Received hand no 93
2011-10-20 17:24:11,394 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:24:11,394 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:24:11,414 - hud          ERROR    Error updating HUD for hand 93.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:25:41,571 - hud          DEBUG    Received hand no 94
2011-10-20 17:25:41,571 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:25:41,571 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:25:41,592 - hud          ERROR    Error updating HUD for hand 94.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:26:51,798 - hud          DEBUG    Received hand no 95
2011-10-20 17:26:51,806 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:26:51,806 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:26:51,826 - hud          ERROR    Error updating HUD for hand 95.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:27:52,197 - hud          DEBUG    Received hand no 96
2011-10-20 17:27:52,207 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:27:52,207 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:27:52,226 - hud          ERROR    Error updating HUD for hand 96.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:28:22,361 - hud          DEBUG    Received hand no 97
2011-10-20 17:28:22,361 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:28:22,371 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:28:22,381 - hud          ERROR    Error updating HUD for hand 97.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:29:12,519 - hud          DEBUG    Received hand no 98
2011-10-20 17:29:12,519 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:29:12,519 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:29:12,529 - hud          ERROR    Error updating HUD for hand 98.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:30:22,588 - hud          DEBUG    Received hand no 99
2011-10-20 17:30:22,598 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:30:22,598 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:30:22,618 - hud          ERROR    Error updating HUD for hand 99.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:31:32,737 - hud          DEBUG    Received hand no 100
2011-10-20 17:31:32,737 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:31:32,737 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:31:32,767 - hud          ERROR    Error updating HUD for hand 100.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:33:02,930 - hud          DEBUG    Received hand no 101
2011-10-20 17:33:02,930 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:33:02,930 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:33:02,950 - hud          ERROR    Error updating HUD for hand 101.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:33:43,295 - hud          DEBUG    Received hand no 102
2011-10-20 17:33:43,295 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:33:43,305 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:33:43,338 - hud          ERROR    Error updating HUD for hand 102.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-20 17:34:33,328 - hud          DEBUG    Received hand no 103
2011-10-20 17:34:33,328 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-20 17:34:33,338 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-10-20 17:34:33,349 - hud          ERROR    Error updating HUD for hand 103.
Traceback (most recent call last):
  File "HUD_main.pyw", line 362, in idle_update
  File "Hud.pyc", line 698, in update
KeyError: ''
2011-10-26 16:38:25,651 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-10-26 16:38:26,105 - hud          INFO     HUD_main starting: Using db name = None
2011-10-26 16:38:26,105 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-26 16:38:26,105 - hud          INFO     Any major error will be reported there _only_.
2011-10-26 16:38:26,114 - hud          INFO     HUD_main starting
2011-10-26 16:38:26,142 - db           DEBUG    Creating Database instance, sql = None
2011-10-26 16:38:26,237 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-26 16:42:56,667 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-10-26 16:42:57,042 - hud          INFO     HUD_main starting: Using db name = None
2011-10-26 16:42:57,042 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-26 16:42:57,042 - hud          INFO     Any major error will be reported there _only_.
2011-10-26 16:42:57,042 - hud          INFO     HUD_main starting
2011-10-26 16:42:57,086 - db           DEBUG    Creating Database instance, sql = None
2011-10-26 16:42:57,186 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-26 16:48:24,687 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-10-26 16:48:25,298 - hud          INFO     HUD_main starting: Using db name = None
2011-10-26 16:48:25,298 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-10-26 16:48:25,298 - hud          INFO     Any major error will be reported there _only_.
2011-10-26 16:48:25,298 - hud          INFO     HUD_main starting
2011-10-26 16:48:25,348 - db           DEBUG    Creating Database instance, sql = None
2011-10-26 16:48:25,447 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-10-26 16:48:52,677 - hud          DEBUG    Received hand no 1
2011-10-26 16:48:52,677 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-10-26 16:48:52,677 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-11-04 16:32:07,698 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:32:08,599 - hud          INFO     HUD_main starting: Using db name = None
2011-11-04 16:32:08,599 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-11-04 16:32:08,599 - hud          INFO     Any major error will be reported there _only_.
2011-11-04 16:32:08,609 - hud          INFO     HUD_main starting
2011-11-04 16:32:08,869 - db           DEBUG    Creating Database instance, sql = None
2011-11-04 16:32:09,081 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:02:36,187 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 17:02:37,112 - hud          INFO     HUD_main starting: Using db name = None
2011-11-04 17:02:37,112 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-11-04 17:02:37,112 - hud          INFO     Any major error will be reported there _only_.
2011-11-04 17:02:37,124 - hud          INFO     HUD_main starting
2011-11-04 17:02:37,190 - db           DEBUG    Creating Database instance, sql = None
2011-11-04 17:02:37,322 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:35:34,186 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:35:35,069 - hud          INFO     HUD_main starting: Using db name = None
2011-11-05 05:35:35,069 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-11-05 05:35:35,069 - hud          INFO     Any major error will be reported there _only_.
2011-11-05 05:35:35,086 - hud          INFO     HUD_main starting
2011-11-05 05:35:35,461 - db           DEBUG    Creating Database instance, sql = None
2011-11-05 05:35:35,559 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:43:39,391 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:43:41,706 - hud          INFO     HUD_main starting: Using db name = None
2011-11-05 05:43:41,706 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-11-05 05:43:41,706 - hud          INFO     Any major error will be reported there _only_.
2011-11-05 05:43:41,746 - hud          INFO     HUD_main starting
2011-11-05 05:43:41,926 - db           DEBUG    Creating Database instance, sql = None
2011-11-05 05:43:42,125 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:43:57,108 - hud          DEBUG    Received hand no 1
2011-11-05 05:43:57,108 - hud          INFO     HUD_main.read_stdin: Hand processing starting.
2011-11-05 05:43:57,108 - db           INFO     opp seats style A 0 10 hero seats style A 0 10
2011-11-05 05:43:57,177 - hud          ERROR    Error: self.window doesn't exist.
2011-11-05 05:43:57,197 - hud          ERROR    Error: self.window doesn't exist.
2011-11-05 05:43:57,207 - hud          ERROR    Error: self.window doesn't exist.
2011-11-05 05:43:57,207 - hud          ERROR    Error: self.window doesn't exist.
2011-11-05 05:43:57,207 - hud          ERROR    Error: self.window doesn't exist.
2011-11-05 05:43:57,207 - hud          ERROR    Can't find table Notting 17 (CAP 30)
2011-11-05 05:43:57,207 - hud          ERROR    HUD create: table name Notting 17 (CAP 30) not found, skipping.
2011-11-07 18:05:29,907 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-07 18:05:30,688 - hud          INFO     HUD_main starting: Using db name = None
2011-11-07 18:05:30,688 - hud          INFO     Note: error output is being diverted to C:\Documents and Settings\John\Application Data\fpdb\log\HUD-errors.txt.
2011-11-07 18:05:30,688 - hud          INFO     Any major error will be reported there _only_.
2011-11-07 18:05:30,869 - hud          INFO     HUD_main starting
2011-11-07 18:05:31,240 - db           DEBUG    Creating Database instance, sql = None
2011-11-07 18:05:32,131 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3

Code:
2011-11-04 16:28:11,414 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:28:11,936 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C0D78>
2011-11-04 16:28:11,936 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:28:11,986 - db           ERROR    Outdated or too new database version (164). Please recreate tables.
2011-11-04 16:28:27,036 - db           INFO     DROP TABLE IF EXISTS  'Actions'
2011-11-04 16:28:27,066 - db           INFO     DROP TABLE IF EXISTS  'Autorates'
2011-11-04 16:28:27,076 - db           INFO     DROP TABLE IF EXISTS  'Backings'
2011-11-04 16:28:27,086 - db           INFO     DROP TABLE IF EXISTS  'Boards'
2011-11-04 16:28:27,096 - db           INFO     DROP TABLE IF EXISTS  'Files'
2011-11-04 16:28:27,137 - db           INFO     DROP TABLE IF EXISTS  'Gametypes'
2011-11-04 16:28:27,147 - db           INFO     DROP TABLE IF EXISTS  'Hands'
2011-11-04 16:28:27,157 - db           INFO     DROP TABLE IF EXISTS  'HandsActions'
2011-11-04 16:28:27,167 - db           INFO     DROP TABLE IF EXISTS  'HandsPlayers'
2011-11-04 16:28:27,190 - db           INFO     DROP TABLE IF EXISTS  'HandsStove'
2011-11-04 16:28:27,201 - db           INFO     DROP TABLE IF EXISTS  'HudCache'
2011-11-04 16:28:27,201 - db           INFO     DROP TABLE IF EXISTS  'Players'
2011-11-04 16:28:27,213 - db           INFO     DROP TABLE IF EXISTS  'RawHands'
2011-11-04 16:28:27,213 - db           INFO     DROP TABLE IF EXISTS  'RawTourneys'
2011-11-04 16:28:27,223 - db           INFO     DROP TABLE IF EXISTS  'SessionsCache'
2011-11-04 16:28:27,256 - db           INFO     DROP TABLE IF EXISTS  'Settings'
2011-11-04 16:28:27,411 - db           INFO     DROP TABLE IF EXISTS  'Sites'
2011-11-04 16:28:27,421 - db           INFO     DROP TABLE IF EXISTS  'TourneyTypes'
2011-11-04 16:28:27,421 - db           INFO     DROP TABLE IF EXISTS  'Tourneys'
2011-11-04 16:28:27,433 - db           INFO     DROP TABLE IF EXISTS  'TourneysPlayers'
2011-11-04 16:28:27,444 - db           DEBUG    CREATE TABLE Settings
            (version INTEGER NOT NULL) 
2011-11-04 16:28:27,454 - db           DEBUG    Creating tables
2011-11-04 16:28:27,608 - db           DEBUG    Creating unique indexes
2011-11-04 16:28:27,653 - db           INFO     Creating index Hands tourneyId
2011-11-04 16:28:27,653 - db           INFO     Creating index Hands gametypeId
2011-11-04 16:28:27,674 - db           INFO     Creating index Hands sessionId
2011-11-04 16:28:27,686 - db           INFO     Creating index Hands gameId
2011-11-04 16:28:27,697 - db           INFO     Creating index Hands fileId
2011-11-04 16:28:27,697 - db           INFO     Creating index Boards handId
2011-11-04 16:28:27,707 - db           INFO     Creating index Gametypes siteId
2011-11-04 16:28:27,719 - db           INFO     Creating index HandsPlayers handId
2011-11-04 16:28:27,730 - db           INFO     Creating index HandsPlayers playerId
2011-11-04 16:28:27,730 - db           INFO     Creating index HandsPlayers tourneysPlayersId
2011-11-04 16:28:27,740 - db           INFO     Creating index HandsActions handId
2011-11-04 16:28:27,740 - db           INFO     Creating index HandsActions playerId
2011-11-04 16:28:27,752 - db           INFO     Creating index HandsActions actionId
2011-11-04 16:28:27,752 - db           INFO     Creating index HandsStove handId
2011-11-04 16:28:27,763 - db           INFO     Creating index HandsStove playerId
2011-11-04 16:28:27,763 - db           INFO     Creating index HudCache gametypeId
2011-11-04 16:28:27,773 - db           INFO     Creating index HudCache playerId
2011-11-04 16:28:27,796 - db           INFO     Creating index HudCache tourneyTypeId
2011-11-04 16:28:27,796 - db           INFO     Creating index GamesCache sessionId
2011-11-04 16:28:27,806 - db           INFO     Creating index GamesCache gametypeId
2011-11-04 16:28:27,818 - db           INFO     Creating index GamesCache playerId
2011-11-04 16:28:27,828 - db           INFO     Creating index Players siteId
2011-11-04 16:28:27,828 - db           INFO     Creating index Tourneys tourneyTypeId
2011-11-04 16:28:27,839 - db           INFO     Creating index Tourneys sessionId
2011-11-04 16:28:27,839 - db           INFO     Creating index TourneysPlayers playerId
2011-11-04 16:28:27,851 - db           INFO     Creating index TourneyTypes siteId
2011-11-04 16:28:27,851 - db           INFO     Creating index Backings tourneysPlayersId
2011-11-04 16:28:27,861 - db           INFO     Creating index Backings playerId
2011-11-04 16:28:27,872 - db           INFO     Creating index RawHands id
2011-11-04 16:28:27,872 - db           INFO     Creating index RawTourneys id
2011-11-04 16:28:27,884 - db           INFO     Finished recreating tables
2011-11-04 16:28:39,204 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:28:40,009 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02D38CD8>
2011-11-04 16:28:40,009 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:28:40,017 - fpdb         WARNING  site Win2day missing from db
2011-11-04 16:28:41,901 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:30:13,542 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:30:14,134 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x043C9A30>
2011-11-04 16:30:14,134 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:30:14,144 - fpdb         WARNING  site Win2day missing from db
2011-11-04 16:30:24,618 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:30:25,519 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x043BDF80>
2011-11-04 16:30:25,519 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:30:25,569 - fpdb         WARNING  site Win2day missing from db
2011-11-04 16:31:22,427 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:31:23,186 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x045A5CD8>
2011-11-04 16:31:23,186 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:31:23,239 - fpdb         WARNING  site Win2day missing from db
2011-11-04 16:31:37,371 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x045A5CD8>
2011-11-04 16:31:37,381 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:31:37,381 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x045A5CD8>
2011-11-04 16:31:37,381 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:34:42,993 - importer     INFO     Converting C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-04\FUN_Zurich_IV.txt
2011-11-04 16:34:43,394 - parser       INFO     HandHistory init - Everleaf site, EverleafToFpdb.Everleaf subclass, in_path 'C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-04\FUN_Zurich_IV.txt'; out_path '-'
2011-11-04 16:34:43,483 - parser       INFO     Parsing 6 hands
2011-11-04 16:37:50,726 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 16:37:51,617 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E9CDC8>
2011-11-04 16:37:51,617 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 16:37:51,657 - fpdb         WARNING  site Win2day missing from db
2011-11-04 17:01:18,532 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E9CDC8>
2011-11-04 17:01:18,542 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:18,572 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E9CDC8>
2011-11-04 17:01:18,572 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:30,809 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E9CDC8>
2011-11-04 17:01:30,809 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:30,819 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E9CDC8>
2011-11-04 17:01:30,829 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:50,769 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-04 17:01:51,619 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:01:51,619 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:51,630 - fpdb         WARNING  site Win2day missing from db
2011-11-04 17:01:59,851 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:01:59,851 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:01:59,861 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:01:59,861 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:02:27,802 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:02:27,802 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:02:27,822 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:02:27,822 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:09:37,812 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:09:37,812 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:09:37,832 - filter       INFO     No games returned from database
2011-11-04 17:09:37,832 - filter       INFO     No currencies returned from database
2011-11-04 17:09:37,832 - filter       INFO     No games returned from database
2011-11-04 17:10:17,289 - filter       INFO     No games returned from database
2011-11-04 17:10:17,289 - filter       INFO     No currencies returned from database
2011-11-04 17:10:17,289 - filter       INFO     No games returned from database
2011-11-04 17:11:17,950 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:11:17,950 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:11:17,960 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-04 17:11:17,960 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-04 17:11:39,585 - importer     INFO     Started at 2011-11-04 17:11:39.585000 -- 1 files to import. indexes: drop
2011-11-04 17:11:39,605 - importer     INFO     Converting C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-04\FUN_Zurich_IV.txt
2011-11-04 17:11:39,703 - parser       INFO     HandHistory init - Everleaf site, EverleafToFpdb.Everleaf subclass, in_path 'C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-04\FUN_Zurich_IV.txt'; out_path '-'
2011-11-04 17:11:39,713 - parser       INFO     Parsing 8 hands
2011-11-05 05:24:30,072 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:24:30,519 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025BED78>
2011-11-05 05:24:30,519 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:24:30,549 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:24:35,956 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:24:36,437 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02D3D170>
2011-11-05 05:24:36,447 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:24:36,473 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:24:37,999 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:27:13,283 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:27:13,736 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02C39620>
2011-11-05 05:27:13,736 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:27:13,744 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:27:20,727 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:27:21,407 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02C29AF8>
2011-11-05 05:27:21,407 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:27:21,418 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:27:23,513 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:27:45,244 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:27:45,865 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x03E96788>
2011-11-05 05:27:45,865 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:27:45,865 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:28:03,369 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:28:03,819 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025CDD78>
2011-11-05 05:28:03,819 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:28:03,819 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:28:07,986 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:28:08,335 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02D3E170>
2011-11-05 05:28:08,335 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:28:08,344 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:28:09,769 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:28:22,296 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:28:22,630 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02661080>
2011-11-05 05:28:22,638 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:28:22,647 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:29:33,187 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:29:33,779 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02C34AA8>
2011-11-05 05:29:33,779 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:29:33,789 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:29:39,526 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:29:39,997 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x02C2CCD8>
2011-11-05 05:29:39,997 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:29:40,007 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:30:45,963 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-05 05:30:46,505 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-05 05:30:46,505 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:30:46,515 - fpdb         WARNING  site Win2day missing from db
2011-11-05 05:35:19,861 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-05 05:35:19,861 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:35:19,911 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-05 05:35:19,911 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:43:32,262 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-05 05:43:32,262 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:43:32,322 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-05 05:43:32,322 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-05 05:43:56,887 - importer     INFO     Converting C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-05\Notting_17_(CAP_30).txt
2011-11-05 05:43:56,947 - parser       INFO     HandHistory init - Everleaf site, EverleafToFpdb.Everleaf subclass, in_path 'C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-05\Notting_17_(CAP_30).txt'; out_path '-'
2011-11-05 05:43:56,947 - parser       INFO     Parsing 1 hands
2011-11-05 05:43:57,038 - parser       INFO     Read 1 hands (0 failed) in 0.091 seconds
2011-11-07 18:02:21,486 - config       INFO     Reading configuration file C:\Documents and Settings\John\Application Data\fpdb\HUD_config.xml
2011-11-07 18:02:21,888 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:02:21,888 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:02:21,926 - fpdb         WARNING  site Win2day missing from db
2011-11-07 18:05:21,206 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:05:21,206 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:05:21,236 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:05:21,236 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:15:53,720 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:15:53,732 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:16:32,743 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:16:32,743 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:17:14,989 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:17:14,989 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:17:15,069 - filter       INFO     t1=1970-01-02 adj_t1=1970-01-02 13:00:00.
2011-11-07 18:17:20,506 - filter       INFO     t1=1970-01-02 adj_t1=1970-01-02 13:00:00.
2011-11-07 18:17:26,184 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:17:26,184 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:20:50,051 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:20:50,051 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:20:50,061 - db           DEBUG    Creating Database instance, sql = <SQL.Sql instance at 0x025C1D78>
2011-11-07 18:20:50,061 - db           INFO     Connecting to SQLite: C:\Documents and Settings\John\Application Data\fpdb\database\fpdb.db3
2011-11-07 18:20:59,677 - importer     INFO     Started at 2011-11-07 18:20:59.678000 -- 4 files to import. indexes: auto
2011-11-07 18:20:59,687 - importer     INFO     Converting C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-08\FUN_Sicilia_VI.txt
2011-11-07 18:20:59,773 - parser       INFO     HandHistory init - Everleaf site, EverleafToFpdb.Everleaf subclass, in_path 'C:\Documents and Settings\John\My Documents\MintedPoker\HandHistory\AugustWest7\2011-11-08\FUN_Sicilia_VI.txt'; out_path '-'
2011-11-07 18:20:59,773 - parser       INFO     Parsing 6 hands
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-08-2011 , 05:28 AM
Hi everybody,

I am Mike from Czech Republic (I prefered to be polite and introduce myself first ), and I have to say that I am really (I mean, really) begginer playing poker and with everything related with poker.

I wanted to have a program wich makes me graphics of the evolution of my hands and the first thing I saw was HM and PT but for my level is not worht at all to pay that amount of money.

After two weeks of looking for a graphic software I found FPDB and against all my predictions it was so easy to install, to make the graphics and even set up the HUD (for a person with my informatic skills).

The only problem I found after 3 days of using FPDB is that I cannot export the graphics to a file. I followed the intructions in the FAQ's at Sourceforge webpage but it is not working for me. When I am entering a filename followed by .png an select Open ("OK" in my computer) does not save it to a file, only creates me a folder with the name ending in .png

I tried and I tried for hours, in differents ways but the only thing I get is a folder. So this is my questions, there is another way to export a graph to a file?

More info: I am running FPDV v. 0.26 in windows 7

Many, many thanks in advance for your time and your patience.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-09-2011 , 10:18 AM
Quote:
Originally Posted by YoNOsoyMike
Hi everybody,
The only problem I found after 3 days of using FPDB is that I cannot export the graphics to a file. I followed the intructions in the FAQ's at Sourceforge webpage but it is not working for me. When I am entering a filename followed by .png an select Open ("OK" in my computer) does not save it to a file, only creates me a folder with the name ending in .png

I tried and I tried for hours, in different ways but the only thing I get is a folder. So this is my questions, there is another way to export a graph to a file?

More info: I am running FPDB v. 0.26 in windows 7
Same here. Though I guess I can just printscreen it.
Is it possible for someone to update the wiki though?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-10-2011 , 02:59 PM
Quote:
Originally Posted by YoNOsoyMike
Hi everybody,

The only problem I found after 3 days of using FPDB is that I cannot export the graphics to a file.
.
Quote:
Originally Posted by Psychobone
Same here. Though I guess I can just printscreen it.
Made a quick test - it's a bug on Windows versions. Thanks for reporting.

Last edited by gimick; 11-10-2011 at 03:05 PM.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-10-2011 , 05:11 PM
Quote:
Originally Posted by YoNOsoyMike


The only problem I found after 3 days of using FPDB is that I cannot export the graphics to a file. .
Quote:
Originally Posted by Psychobone
Same here. Though I guess I can just printscreen it.
Is now fixed for the next release - if you want to try it sooner, there is a fresh snapshot (fpdb-git-20111110-d0b58de.exe) in the downloads area on sourceforge

If you do use the snapshot, the database will need to be recreated and the hand data imported again. Also, you may get a popup about win2day - this can be fixed by removing that section from the configuration xml (or by deleting the configuration which will cause fpdb to create a fresh configuration file).

To export the graph to a file do the following:
1. Create the graph on the screen
2. Click export
3. Select the folder/directory where the file should be created
4. click OK - fpdb will create a png file with the current date and time as the filename.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-10-2011 , 05:31 PM
Now is working perfectly fine!!
Thanks a lot!!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-11-2011 , 03:26 PM
Hi,

I really want to know if there is M-ratio stats available in poker HUD? I have to say that this is a fantastic software but it would be nicer if you could see stats for M-ratio because it's an important part of playing good poker in tournaments. Thanks!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-12-2011 , 01:11 PM
Please help!
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
11-13-2011 , 12:00 PM
Is this software good for a 7 card stud(HI, Razz, and HI/LO) player?

What options does the software offer for stud players?

And if there are any stud players that use it, have any tips/tricks?

Does it have a Bankroll tracker?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m