Skip to content

Commit

Permalink
fix: correct syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Oct 30, 2017
1 parent 233a999 commit 238fbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def insert_break(lines, break_pos=9):
def line_filter(line):
if len(line) == 0:
return True
return any(line.startswith(c) for c in "-*+"):
return any(line.startswith(c) for c in "-*+")

if len(lines) <= break_pos:
return lines
Expand Down

0 comments on commit 238fbbb

Please sign in to comment.