Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion patchwork/common/client/scm.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def reset_comments(self) -> None:
for thread, comments in self.__iter_comments():
comment_ids_to_delete = []
for comment in comments:
if comment.content.startswith(_COMMENT_MARKER):
if comment.content is not None and comment.content.startswith(_COMMENT_MARKER):
comment_ids_to_delete.append(comment.id)
if len(comment_ids_to_delete) == len(comments):
for comment_id in comment_ids_to_delete:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "patchwork-cli"
version = "0.0.86"
version = "0.0.88"
description = ""
authors = ["patched.codes"]
license = "AGPL"
Expand Down
Loading