diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-07-15 18:07:36 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:21:26 +0100 |
commit | 7bccf6a2671e281808694fd3ee5c609b1351bb35 (patch) | |
tree | cc717cc37ba27351ec1dc346dd1b7a6438663254 | |
parent | 621dd0d8c2c2c806ccf9632e049bcbf2a8f3a8e9 (diff) | |
download | Ishtar-7bccf6a2671e281808694fd3ee5c609b1351bb35.tar.bz2 Ishtar-7bccf6a2671e281808694fd3ee5c609b1351bb35.zip |
Fix app name in settings
-rw-r--r-- | example_project/settings.py | 2 | ||||
-rw-r--r-- | ishtar_common/version.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 60db6e53f..e09df3001 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -161,7 +161,7 @@ ROOT_URLCONF = "example_project.urls" AUTHENTICATION_BACKENDS = ("ishtar_common.backend.ObjectPermBackend",) INSTALLED_APPS = [ - "django_registration", + "registration", "ishtar_common", "archaeological_files_pdl", "archaeological_files", diff --git a/ishtar_common/version.py b/ishtar_common/version.py index 66ed73a16..5d889e10e 100644 --- a/ishtar_common/version.py +++ b/ishtar_common/version.py @@ -1,5 +1,5 @@ -# 4.0.2 -VERSION = (4, 0, 2) +# 4.0.3 +VERSION = (4, 0, 3) def get_version(): |