diff --git a/pyfpdb/AbsoluteToFpdb.py b/pyfpdb/AbsoluteToFpdb.py index 8969459d..fe4f87e9 100755 --- a/pyfpdb/AbsoluteToFpdb.py +++ b/pyfpdb/AbsoluteToFpdb.py @@ -321,11 +321,7 @@ class Absolute(HandHistoryConverter): hand.involved = False def readStudPlayerCards(self, hand, street): - # lol. see Plymouth.txt - logging.warning(_("Absolute readStudPlayerCards is only a stub.")) - #~ if street in ('THIRD', 'FOURTH', 'FIFTH', 'SIXTH'): - #~ hand.addPlayerCards(player = player.group('PNAME'), street = street, closed = [], open = []) - + logging.warning(_("Absolute cannot read all stud/razz hands yet.")) def readAction(self, hand, street): logging.debug("readAction (%s)" % street) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index c5525e36..efd2d689 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -254,13 +254,8 @@ or None if we fail to get the info """ #Not involved in hand hand.involved = False - def readStudPlayerCards(self, hand, street): - # lol. see Plymouth.txt - logging.warning(_("Everleaf readStudPlayerCards is only a stub.")) - #~ if street in ('THIRD', 'FOURTH', 'FIFTH', 'SIXTH'): - #~ hand.addPlayerCards(player = player.group('PNAME'), street = street, closed = [], open = []) - + logging.warning(_("Absolute cannot read all stud/razz hands yet.")) def readAction(self, hand, street): logging.debug("readAction (%s)" % street)