Skip to content

Commit 25343bf

Browse files
authored
Merge pull request #49 from hrshdhgd/lstrip-bullet
Left-strip command bullets to match pattern
2 parents 4bba17f + d0294d8 commit 25343bf

File tree

1 file changed

+1
-1
lines changed
  • src/ontobot_change_agent

1 file changed

+1
-1
lines changed

src/ontobot_change_agent/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def process_issue(
168168
[
169169
str(item).replace(bullet, "")
170170
for item in issue[BODY].splitlines()
171-
if item.startswith(bullet)
171+
if item.lstrip().startswith(bullet)
172172
]
173173
)
174174
if output:

0 commit comments

Comments
 (0)