From e8ac6fddaf59ef0e920743e5dc849682607cf1f9 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Tue, 6 Feb 2018 01:11:07 +0900 Subject: [PATCH] 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: I57aba8bef6b96bf4c5a6b34d8c6a167de93a6f5c Closes-Bug: #1747453 --- babel-django.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/babel-django.cfg b/babel-django.cfg index 862e0107..db1c9d55 100644 --- a/babel-django.cfg +++ b/babel-django.cfg @@ -2,5 +2,5 @@ django = django_babel.extract:extract_django [python: **.py] -[django: templates/**.html] -[django: **/templates/**.csv] \ No newline at end of file +[django: **/templates/**.html] +[django: **/templates/**.csv]