Skip to content

Commit

Permalink
adding one forgotten f
Browse files Browse the repository at this point in the history
  • Loading branch information
fchapoton committed Apr 24, 2023
1 parent 14c8be5 commit ea35699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/modular/arithgroup/congroup.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def degeneracy_coset_representatives_gamma1(int N, int M, int t):
raise ArithmeticError(f"M (={M}) must be a divisor of N (={N})")

if (N // M) % t != 0:
raise ArithmeticError("t (={t}) must be a divisor of N/M (={N//M})")
raise ArithmeticError(f"t (={t}) must be a divisor of N/M (={N//M})")

cdef int d, g, i, j, k, n, aa, bb, cc, dd, Ndivt, halfmax, is_new
cdef int* R
Expand Down

0 comments on commit ea35699

Please sign in to comment.