Skip to content

Commit

Permalink
update file location
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewVSutherland committed Mar 22, 2019
1 parent 7422b8b commit 5bf8273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/zeros/zeta/zetazeros.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def list_zeros(N=None,
zeros = zeros_starting_at_t(t, limit)

if fmt == 'plain':
response = flask.Response(("%d %s\n" % (n, nstr(z,31,strip_zeros=False,min_fixed=-inf,max_fixed=+inf)) for (n, z) in zeros))
response = flask.Response(("%d %s\n" % (n, nstr(z,31+floor(log(z,10))+1,strip_zeros=False,min_fixed=-inf,max_fixed=+inf)) for (n, z) in zeros))
response.headers['content-type'] = 'text/plain'
if download == "yes":
response.headers['content-disposition'] = 'attachment; filename=zetazeros'
Expand Down

0 comments on commit 5bf8273

Please sign in to comment.