diff --git a/lmfdb/elliptic_curves/web_ec.py b/lmfdb/elliptic_curves/web_ec.py index 62d45c4a0d..3a97efe985 100644 --- a/lmfdb/elliptic_curves/web_ec.py +++ b/lmfdb/elliptic_curves/web_ec.py @@ -96,7 +96,7 @@ def gl2_subgroup_data(label): data['Slabel'] = label elif S_EXT_LABEL_RE.fullmatch(label): in_modcurve_db = False - data = data = db.gps_gl2zhat.lucky({'Slabel':label}) + data = data = db.gps_gl2zhat_fine.lucky({'Slabel':label}) else: return "Unrecognized GL(2,Zhat) subgroup label format %s" % label if data is None: diff --git a/lmfdb/modl_galois_representations/web_modlgal.py b/lmfdb/modl_galois_representations/web_modlgal.py index 1995ec6cd6..a51ebe5975 100644 --- a/lmfdb/modl_galois_representations/web_modlgal.py +++ b/lmfdb/modl_galois_representations/web_modlgal.py @@ -24,7 +24,7 @@ def image_pretty(image_label, is_surjective, algebraic_group, dimension, base_ri s = _codomain(algebraic_group, dimension, base_ring_order, base_ring_is_field) if is_surjective: return "$" + s + "$" - t = t = display_knowl('gl2.subgroup_data', title=image_label, kwargs={'label':image_label}) if dimension == 2 else image_label + t = display_knowl('gl2.subgroup_data', title=image_label, kwargs={'label':image_label}) if dimension == 2 else image_label return t + r" $< " + s + "$" if codomain else t def rep_pretty(algebraic_group, dimension, base_ring_order, base_ring_is_field):