Skip to content

Commit

Permalink
Fix bug exposed in Django 3.2 in AppConfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlipperPA committed Apr 16, 2021
1 parent 4a8a290 commit a1d8fde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions automagic_rest/apps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.apps import AppConfig


class NlpConfig(AppConfig):
name = "nlp"
class AutomagicRestConfig(AppConfig):
name = 'automagic_rest'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -38,6 +37,7 @@
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
Expand Down

0 comments on commit a1d8fde

Please sign in to comment.