Skip to content

Commit

Permalink
fix typo in tag (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener authored and Midnighter committed Oct 30, 2017
1 parent 098e92b commit 7f22812
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/publish_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

def insert_break(lines, break_pos=9):
"""
Insert a <!-- more --> tag for larger release notes.
Insert a <!--more--> tag for larger release notes.
Parameters
----------
Expand All @@ -42,7 +42,7 @@ def line_filter(line):
if line_filter(line.strip())]
if len(newlines) > 0:
break_pos = newlines[0]
lines.insert(break_pos, "<!-- more -->\n")
lines.insert(break_pos, "<!--more-->\n")
return lines


Expand Down

0 comments on commit 7f22812

Please sign in to comment.