aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/content/apps.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-07-11 05:10:19 +0400
committerGravatar Hassan Abouelela <[email protected]>2022-07-11 05:10:19 +0400
commit4edb368c39c96f20e41a8874b0f77f30910c8ce7 (patch)
tree13c3828df095765d2c6d53072c22ae37427a3073 /pydis_site/apps/content/apps.py
parentBump flake8-bandit To v3 (diff)
Bump Django To 3.2
Bumps the current django version to 3.2 For the most part, there are no major changes here. The app configuration names were incorrect, and the new version no longer ignores that, so those were updated. The new version also requires explicitly defining the field type for primary keys if they are not defined on the model. Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'pydis_site/apps/content/apps.py')
-rw-r--r--pydis_site/apps/content/apps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/content/apps.py b/pydis_site/apps/content/apps.py
index 1e300a48..96019e1c 100644
--- a/pydis_site/apps/content/apps.py
+++ b/pydis_site/apps/content/apps.py
@@ -4,4 +4,4 @@ from django.apps import AppConfig
class ContentConfig(AppConfig):
"""Django AppConfig for content app."""
- name = 'content'
+ name = 'pydis_site.apps.content'