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

Commit

Permalink
Trac #19306: change % to .format
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrenn committed Jan 16, 2016
1 parent eac4977 commit 946a828
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def log_Stirling(var, precision=None, skip_constant_summand=False):
coefficient_ring = QQ

from asymptotic_ring import AsymptoticRing
A = AsymptoticRing(growth_group='%s^ZZ * log(%s)^ZZ' % ((var,)*2),
A = AsymptoticRing(growth_group='{n}^ZZ * log({n})^ZZ'.format(n=var),
coefficient_ring=coefficient_ring)
n = A.gen()

Expand Down

0 comments on commit 946a828

Please sign in to comment.