Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 9c461e3

Browse files
committed
17426: fix typo
1 parent 9d1432a commit 9c461e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sage/symbolic/ring.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ cdef class SymbolicRing(CommutativeRing):
299299
GEx_construct_pyobject(exp, x)
300300
elif isinstance(x, Factorization):
301301
from sage.misc.all import prod
302-
return prod([SR(p)**e for p,e in x], SR(x.unit())
302+
return prod([SR(p)**e for p,e in x], SR(x.unit()))
303303
else:
304304
raise TypeError
305305

0 commit comments

Comments
 (0)