setup.py: fix compile_translations

This commit is contained in:
Benjamin Dauvergne 2020-08-18 10:22:02 +02:00
parent 29a0af67c5
commit 884b6fd93e
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class compile_translations(Command):
def run(self):
try:
from django.core.management import call_command
for path, dirs, files in os.walk('combo'):
for path, dirs, files in os.walk('zoo'):
if 'locale' not in dirs:
continue
curdir = os.getcwd()