Skip to content

Commit 5a1c9bc

Browse files
authored
Merge pull request #4 from vChavezB/stack_worst_case
Stack worst case fix
2 parents 111286d + 2310f89 commit 5a1c9bc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

puncover_html.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ def add_table_class(old_html):
7979
return new_html
8080

8181
def fix_sort_table(old_html):
82+
function_page = old_html.find("<th>Function</th>") != -1
83+
# If its a function page no need to fix table
84+
if function_page:
85+
return None
8286
new_html = add_table_class(old_html)
8387
if new_html is None:
8488
return None

0 commit comments

Comments
 (0)