Skip to content

Commit 5a5c5be

Browse files
Merge pull request #6688 from JaneShi99/4810
Verify that search result download button works for magma and sage #4810
2 parents b904488 + a6f66ee commit 5a5c5be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lmfdb/genus2_curves/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ class G2C_download(Downloader):
579579
["eqn"],
580580
{
581581
"magma": 'QQx<x> := PolynomialRing(Rationals());\n curve := HyperellipticCurve(QQx!(out`eqn[1]), QQx!(out`eqn[2]));',
582-
"sage": 'QQx.<x> := QQ[]\n curve = HyperellipticCurve(QQx(out["eqn"][0]), QQx(out["eqn"][1]))',
582+
"sage": 'QQx.<x> = QQ[]\n curve = HyperellipticCurve(QQx(out["eqn"][0]), QQx(out["eqn"][1]))',
583583
"gp": 'curve = apply(Polrev, mapget(out, "eqn"));',
584584
}
585585
),

0 commit comments

Comments
 (0)