- commit
- b14679af7af0163338183979ec3da9cd4a3143cf
- parent
- 7956672c428f295d212c567f71fa1872d6db9342
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2021-06-08 07:49
use underscore in app name
Diffstat
19 files changed, 3 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
@@ -1 +1 @@1 -1 recursive-include django-bs4/templates *.html-1 1 recursive-include django_bs4/templates *.html
diff --git a/README.rst b/README.rst
@@ -22,12 +22,12 @@ Install with pip:: 22 22 23 23 After that you have to add it to ``INSTALLED_APPS``. You also need to 24 24 make sure that the correct ``FORM_RENDERER`` is selected and25 -1 ``django.forms`` is in ``INSTALLED_APPS`` (after ``django-bs4``). This-1 25 ``django.forms`` is in ``INSTALLED_APPS`` (after ``django_bs4``). This 26 26 is required so that widget templates can be overwritten:: 27 27 28 28 INSTALLED_APPS = [ 29 29 …30 -1 'django-bs4',-1 30 'django_bs4', 31 31 … 32 32 'django.forms', 33 33 …