Skip to content

Commit 24d071d

Browse files
committed
Fix bug in field extraction wrt #2567
1 parent aabdc0b commit 24d071d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scholia/scrape/openreview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def _field_to_content(tree, field):
134134

135135
def _fields_to_content(tree, fields):
136136
for field in fields:
137-
content = _field_to_content(field)
137+
content = _field_to_content(tree, field)
138138
if content is not None and content != '':
139139
return content
140140

0 commit comments

Comments
 (0)