From af44f95577803c03becd49c6fe06e54c8aef53e7 Mon Sep 17 00:00:00 2001 From: Sergey Zubkov Date: Thu, 18 Mar 2021 13:19:45 -0400 Subject: [PATCH] and another fix to md-split.py for CI --- scripts/python/md-split.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python/md-split.py b/scripts/python/md-split.py index f2d2885..2403c6f 100755 --- a/scripts/python/md-split.py +++ b/scripts/python/md-split.py @@ -83,7 +83,7 @@ def process_code(read_filehandle, text_filehandle, line, linenum, sourcefile, co fenced = (line.strip() == '```') if fenced: try: - line = read_filehandle.next() + line = read_filehandle.readLine() linenum += 1 text_filehandle.write('\n') except StopIteration: -- GitLab