Skip to content

Commit

Permalink
Merge pull request #6154 from jwj61/gps_gl2zhat
Browse files Browse the repository at this point in the history
Typo and minor bug fix
  • Loading branch information
jwj61 authored Aug 21, 2024
2 parents e3bc701 + e883746 commit f65826f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lmfdb/elliptic_curves/web_ec.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lmfdb/modl_galois_representations/web_modlgal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit f65826f

Please sign in to comment.