From 9c522d2ed8e752932bfff62d6e2940e56dee700b Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Wed, 28 Sep 2016 11:24:49 -0700 Subject: [PATCH] Fixed typo in docs/ref/contrib/gis/install/postgis.txt. --- docs/ref/contrib/gis/install/postgis.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):