Explorar o código

Docs: Fixes unbalanced parens. Closes #3552

Ask Solem %!s(int64=8) %!d(string=hai) anos
pai
achega
45d08076c4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/whatsnew-4.0.rst

+ 1 - 1
docs/whatsnew-4.0.rst

@@ -240,7 +240,7 @@ Example usage:
             article = Article.objects.create(**request.POST)
             # send this task only if the rest of the transaction succeeds.
             transaction.on_commit(partial(
-                send_article_created_notification.delay, article_id=article.pk)
+                send_article_created_notification.delay, article_id=article.pk))
             Log.objects.create(type=Log.ARTICLE_CREATED, object_pk=article.pk)
 
 Removed features