From 745b89f6e1a7e71a408c506497c4c66114cf1066 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 23 Feb 2010 13:19:49 +0000 Subject: [PATCH] Fixed #12916 -- Added a missing versionadded marker for the m2m_changed signal. Thanks to timo for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12514 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/signals.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index e6c8abec634..b01c1f0b340 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -176,6 +176,8 @@ m2m_changed .. data:: django.db.models.signals.m2m_changed :module: +.. versionadded:: 1.2 + Sent when a :class:`ManyToManyField` is changed on a model instance. Strictly speaking, this is not a model signal since it is sent by the :class:`ManyToManyField`, but since it complements the