We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e598d0f commit da1370bCopy full SHA for da1370b
patchwork/common/client/scm.py
@@ -402,7 +402,7 @@ def reset_comments(self) -> None:
402
for thread, comments in self.__iter_comments():
403
comment_ids_to_delete = []
404
for comment in comments:
405
- if comment.content.startswith(_COMMENT_MARKER):
+ if comment.content is not None and comment.content.startswith(_COMMENT_MARKER):
406
comment_ids_to_delete.append(comment.id)
407
if len(comment_ids_to_delete) == len(comments):
408
for comment_id in comment_ids_to_delete:
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "patchwork-cli"
3
-version = "0.0.86"
+version = "0.0.88"
4
description = ""
5
authors = ["patched.codes"]
6
license = "AGPL"
0 commit comments