From 5c990707ea4aea9358d037e6989d7babb013501f Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Tue, 6 Feb 2018 01:05:56 +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: I7414e9d973be98e5ee6d6277cf750ded40bc6c7a 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 862e010..db1c9d5 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]