diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 759ed33d..46c8776b 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -320,7 +320,7 @@ class PartyPoker(HandHistoryConverter): if key == 'PLAY' and info['PLAY'] != 'Real': # if realy party doesn's save play money hh hand.gametype['currency'] = 'play' - if key == 'MAX': + if key == 'MAX' and info[key] is not None: hand.maxseats = int(info[key])