Skip to content

Commit edc7733

Browse files
authored
Merge pull request #14 from hrshdhgd/gen-pr-body
removed \r
2 parents 7de0e9f + c124294 commit edc7733

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tool.poetry]
44
name = "onto-crawler"
5-
version = "0.1.6"
5+
version = "0.1.7"
66
description = "Crawl github for ontology related issues."
77
readme = "README.md"
88
authors = ["Harshad Hegde <[email protected]>"]

src/onto_crawler/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def process_issue(
144144
:param label: Label of issues.
145145
:param state: State of issue ["open", "close" etc.]
146146
"""
147-
formatted_body = "The following commands were executed: \r\n"
147+
formatted_body = "The following commands were executed: </br>"
148148

149149
for issue in get_issues(
150150
repository_name=repo, label=label, number=number, state=state
@@ -174,7 +174,7 @@ def _list_to_markdown(list: list) -> str:
174174
bullet = "- "
175175
md = ""
176176
for line in list:
177-
md += bullet + line + "\r\n"
177+
md += bullet + line + "</br>"
178178
return md
179179

180180

0 commit comments

Comments
 (0)