Skip to content

Commit

Permalink
Remove debug print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska committed Jan 2, 2023
1 parent d7df0c7 commit 9bfb72f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nikola/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,11 +669,9 @@ def html_tostring_fragment(document):
for start in start_fragments:
if doc.startswith(start):
doc = doc[len(start):].strip()
print(repr(doc))
for end in end_fragments:
if doc.endswith(end):
doc = doc[:-len(end)].strip()
print(repr(doc))
return doc


Expand Down

0 comments on commit 9bfb72f

Please sign in to comment.