Ticket #9437: gis-connection-close-trunk.diff
File gis-connection-close-trunk.diff, 587 bytes (added by , 15 years ago) |
---|
-
django/contrib/gis/db/backends/postgis/operations.py
413 413 # Responsibility of callers to perform error handling. 414 414 raise 415 415 finally: 416 cursor.close() 416 # Close out the connection. See #9437. 417 self.connection.close() 417 418 return row[0] 418 419 419 420 def postgis_geos_version(self):