Skip to content

Commit cf7dda2

Browse files
committed
oops fix
1 parent c1783fb commit cf7dda2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sage/combinat/sf/kfpoly.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def KostkaFoulkesPolynomial(mu, nu, t=None):
7676
sage: KostkaFoulkesPolynomial([2,4],[2,2])
7777
Traceback (most recent call last):
7878
...
79-
ValueError: mu must be a partition
79+
ValueError: mu must be a partition or a skew partition
8080
sage: KostkaFoulkesPolynomial([2,2],[2,4])
8181
Traceback (most recent call last):
8282
...
@@ -89,7 +89,7 @@ def KostkaFoulkesPolynomial(mu, nu, t=None):
8989
if mu not in _Partitions:
9090
if mu in SkewPartitions():
9191
return kfpoly_skew(mu, nu, t)
92-
raise ValueError("mu must be a partition or skew partition")
92+
raise ValueError("mu must be a partition or a skew partition")
9393
if nu not in _Partitions:
9494
raise ValueError("nu must be a partition")
9595
if sum(mu) != sum(nu):

0 commit comments

Comments
 (0)