##// END OF EJS Templates
Fix attempt #2
neko259 -
r1612:a6b3e741 default
parent child Browse files
Show More
@@ -154,7 +154,7 b' class PostManager(models.Manager):'
154 url_to_post = '[post]{}[/post]'.format(str(global_id))
154 url_to_post = '[post]{}[/post]'.format(str(global_id))
155 replies = self.filter(text__contains=url_to_post)
155 replies = self.filter(text__contains=url_to_post)
156 for reply in replies:
156 for reply in replies:
157 post_import_deps.send(reply.__class__, reply)
157 post_import_deps.send(reply.__class__, instance=reply)
158
158
159 @transaction.atomic
159 @transaction.atomic
160 def update_post(self, post, title: str, text: str, pub_time: str,
160 def update_post(self, post, title: str, text: str, pub_time: str,
General Comments 0
You need to be logged in to leave comments. Login now