Skip to content

Commit

Permalink
missing verbose flag fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gilcu3 committed May 12, 2024
1 parent fcdb6f0 commit c1452e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion discretelog/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def factor(n, DEBUG=False):
else:
ps = []
try:
for p in primefac(n, verbose=True, trial=10**4, rho=2 * 10**5,
for p in primefac(n, trial=10**4, rho=2 * 10**5,
methods=tuple(), verbose=DEBUG):
if isprime(p):
n //= p
Expand Down

0 comments on commit c1452e8

Please sign in to comment.