1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #13798 -- Added connection argument to the connection_created signal. Thanks to liangent for the report, and Alex Gaynor for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13672 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee
2010-08-30 13:21:18 +00:00
parent a5c80a28dc
commit 6909c22663
8 changed files with 35 additions and 45 deletions

View File

@@ -1,3 +1,3 @@
from django.dispatch import Signal
connection_created = Signal()
connection_created = Signal(providing_args=["connection"])