diff options
author | Jonas Genannt <genannt@debian.org> | 2015-11-15 22:26:06 +0100 |
---|---|---|
committer | Jonas Genannt <genannt@debian.org> | 2015-11-15 22:26:06 +0100 |
commit | d65aa3c3c146b12548a54c894060bce9a8715ad2 (patch) | |
tree | 293607c424ec0b1d41e2aefaf26989a7adbd3e04 /tagging/apps.py | |
parent | 29425a36c920e9b54e5860429ef3e3ce639fb155 (diff) | |
download | python-django-tagging-706be8e76127d9a0054ee7dee43b8fc63c266f42.tar python-django-tagging-706be8e76127d9a0054ee7dee43b8fc63c266f42.tar.gz |
Imported Upstream version 0.4upstream/0.4
Diffstat (limited to 'tagging/apps.py')
-rw-r--r-- | tagging/apps.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tagging/apps.py b/tagging/apps.py new file mode 100644 index 0000000..492318c --- /dev/null +++ b/tagging/apps.py @@ -0,0 +1,14 @@ +""" +Apps for tagging. +""" +from django.apps import AppConfig +from django.utils.translation import ugettext_lazy as _ + + +class TaggingConfig(AppConfig): + """ + Config for Tagging application. + """ + name = 'tagging' + label = 'tagging' + verbose_name = _('Tagging') |