summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristian Bundy <christianbundy@fraction.io>2016-09-28 11:24:49 -0700
committerTim Graham <timograham@gmail.com>2016-09-28 14:24:49 -0400
commit9c522d2ed8e752932bfff62d6e2940e56dee700b (patch)
treec437e7e54b76b75c995ef9a0f037e077fba635a2 /docs
parentf2ff1b2fabbe26d5e61d690c4c5a47f9582f9300 (diff)
Fixed typo in docs/ref/contrib/gis/install/postgis.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/install/postgis.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/gis/install/postgis.txt b/docs/ref/contrib/gis/install/postgis.txt
index 8416f790c8..7b2d6e55ec 100644
--- a/docs/ref/contrib/gis/install/postgis.txt
+++ b/docs/ref/contrib/gis/install/postgis.txt
@@ -67,7 +67,7 @@ The database user must be a superuser in order to run
``CREATE EXTENSION postgis;``. The command is run during the :djadmin:`migrate`
process. An alternative is to use a migration operation in your project::
- from django.contrib.postgresql.operations import CreateExtension
+ from django.contrib.postgres.operations import CreateExtension
from django.db import migrations
class Migration(migrations.Migration):