Use verbose name for totd AppConfig

This commit is contained in:
Michael Hall 2018-09-22 01:35:17 -04:00
parent b73e3778d7
commit 15011e9ffd
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1 @@
default_app_config = 'totd.apps.TotdConfig'

View file

@ -2,4 +2,6 @@ from django.apps import AppConfig
class TotdConfig(AppConfig):
label = 'totd'
name = 'totd'
verbose_name = 'Tip of the Day'