Correct django template pattern in babel-django.cfg

The current recommended file pattern "templates/**.html" does not
match Django templates in subdirectories.
This needs to be "**/templates/**.html".

Change-Id: I157703a9ae9bea99c1219367f7225ce60a530803
This commit is contained in:
Akihiro Motoki 2018-02-05 02:43:06 +09:00
parent c6de8b68c8
commit 9430df7d7b
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@
django = django_babel.extract:extract_django
[python: **.py]
[django: templates/**.html]
[django: **/templates/**.html]