remotes/1693045480750635534/spooky-22
Aevann1 2021-07-30 07:34:04 +02:00
parent b64c34519c
commit 500c4090a4
1 changed files with 2 additions and 2 deletions

View File

@ -113,8 +113,8 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing):
@property
@lazy
def parent_fullname(self):
if self.parent_comment_id: return "t3_" + self.parent_comment_id
elif self.parent_submission: return "t2_" + self.parent_submission
if self.parent_comment_id: return f"t3_{self.parent_comment_id}"
elif self.parent_submission: return f"t2_{self.parent_submission}"
@property