Ticket #7434: 7434.0.diff

File 7434.0.diff, 776 bytes (added by Robert Coup, 16 years ago)

Doc patch

  • django/contrib/gis/gdal/__init__.py

     
    1919  types (GDAL library not required).
    2020
    2121 SpatialReference: Represents OSR Spatial Reference objects.
     22 
     23 The GDAL library will be imported from the system path using the default
     24  library name for the current OS. Override the library path by specifying
     25  settings.GDAL_LIBRARY_PATH. Prevent GDAL from loading by setting
     26  GDAL_LIBRARY_PATH to a non-existant file (but not None/False/'').
    2227"""
    2328# Attempting to import objects that depend on the GDAL library.  The
    2429# HAS_GDAL flag will be set to True if the library is present on
Back to Top