Skip to content

Commit b782370

Browse files
committed
fix missed case of removal of getzflo caused by auto-merging a pull request that came from before the 2.6+ branch was merged
1 parent 92be493 commit b782370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xlrd/xlsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ def open_workbook_2007_xml(
792792
del zflo
793793
comments_fname = 'xl/comments%d.xml' % (sheetx + 1)
794794
if comments_fname in component_names:
795-
comments_stream = getzflo(zf, comments_fname)
795+
comments_stream = zf.open(comments_fname)
796796
x12sheet.process_comments_stream(comments_stream)
797797
del comments_stream
798798

0 commit comments

Comments
 (0)