Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 240cc10

Browse files
committedAug 4, 2014
16719 reviewer's patch: attempt to fix previous patch
1 parent b69d63f commit 240cc10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/sage/libs/gap/element.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ cdef GapElement make_any_gap_element(parent, libGAP_Obj obj):
191191
elif num >= libGAP_FIRST_LIST_TNUM and num <= libGAP_LAST_LIST_TNUM:
192192
return make_GapElement_List(parent, obj)
193193
elif num == libGAP_T_CHAR:
194-
return make_GapElement(parent, obj).String()
194+
return make_GapElement_String(parent, obj).String()
195195
result = make_GapElement(parent, obj)
196196
if num == libGAP_T_POSOBJ:
197197
if result.IsZmodnZObj():

0 commit comments

Comments
 (0)
This repository has been archived.