From 8b2329afca64863197790681d6bf8c64a9040823 Mon Sep 17 00:00:00 2001 From: Aleksandra Bogoslavetc Date: Tue, 24 Nov 2020 23:24:03 +0300 Subject: [PATCH] fix: Fix package name in README (#556) --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 41b024443a..dec0d579af 100644 --- a/README.rst +++ b/README.rst @@ -49,7 +49,7 @@ After `installation <#Installation>`__, you'll need to edit your Django .. code:: python INSTALLED_APPS = [ - 'spanner_django', + 'django_spanner', ... ] @@ -62,7 +62,7 @@ Format DATABASES = { 'default': { - 'ENGINE': 'spanner_django', + 'ENGINE': 'django_spanner', 'PROJECT': '', 'INSTANCE': '', 'NAME': '', @@ -81,7 +81,7 @@ Database configurations DATABASES = { 'default': { - 'ENGINE': 'spanner_django', + 'ENGINE': 'django_spanner', 'PROJECT': 'appdev-soda-spanner-staging', # Or the GCP project-id 'INSTANCE': 'django-dev1', # Or the Cloud Spanner instance 'NAME': 'db1', # Or the Cloud Spanner database to use