Skip to content

Commit 42e6e9c

Browse files
committed
bug fix in _resolve_infoset
1 parent 73c2cd3 commit 42e6e9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pygambit/game.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ class Game:
15331533
except KeyError:
15341534
raise KeyError(f"{funcname}(): no information set with label '{infoset}'")
15351535
raise TypeError(
1536-
f"{funcname}(): {argname} must be Infoset or str, not {node.__class__.__name__}"
1536+
f"{funcname}(): {argname} must be Infoset or str, not {infoset.__class__.__name__}"
15371537
)
15381538

15391539
def _resolve_action(self,

0 commit comments

Comments
 (0)