~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to django/contrib/gis/db/backends/spatialite/base.py

  • Committer: Bazaar Package Importer
  • Author(s): Raphaël Hertzog
  • Date: 2010-09-18 19:37:03 UTC
  • mto: (1.1.12 upstream) (4.4.9 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20100918193703-sw44inm7dnu8mf42
Import upstream version 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
            self.connection.create_function("django_extract", 2, _sqlite_extract)
52
52
            self.connection.create_function("django_date_trunc", 2, _sqlite_date_trunc)
53
53
            self.connection.create_function("regexp", 2, _sqlite_regexp)
54
 
            connection_created.send(sender=self.__class__)
 
54
            connection_created.send(sender=self.__class__, connection=self)
55
55
 
56
56
            ## From here on, customized for GeoDjango ##
57
57