Skip to content

Commit

Permalink
Fix processing of empty comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KarstenSchulz committed Sep 2, 2022
1 parent 44a0e6d commit a62a2c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ytissues/ytlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def __init__(
self.author = author
self.created = created
self.updated = updated
self.text = text
self.text = text or ""
self._attachment_names = None

@property
Expand Down

0 comments on commit a62a2c4

Please sign in to comment.