From a87f544b13b65c19effb62d9f8d09a7917a79dcf Mon Sep 17 00:00:00 2001 From: Guilouf Date: Tue, 11 Jun 2019 10:32:52 +0200 Subject: [PATCH] Added 'django.contrib.sites' as required apps Installation does not work when 'django.contrib.sites' is not already included --- README.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/README.rst b/README.rst index 9554b19b..30ca577b 100644 --- a/README.rst +++ b/README.rst @@ -63,6 +63,7 @@ Add ``forms_builder.forms`` to ``INSTALLED_APPS`` in your project's INSTALLED_APPS = ( # other apps + 'django.contrib.sites', # ensure this is present 'forms_builder.forms', )