Skip to content

Commit

Permalink
fix: Partial files are not added
Browse files Browse the repository at this point in the history
By mistake, we use (django_partial) and (djangojs_partial) naming
instead of (django-partial.po) and (djangojs-partial.po)

This is considered a patch to #129
  • Loading branch information
shadinaif committed Aug 31, 2023
1 parent c3a9831 commit d07385f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i18n/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def run(self, args):
files_to_clean.update(segmented_files)

# Add partial files to the list of files to clean.
files_to_clean.update(('django_partial', 'djangojs_partial'))
files_to_clean.update(('django-partial.po', 'djangojs-partial.po'))

# Finish each file.
for filename in files_to_clean:
Expand Down

0 comments on commit d07385f

Please sign in to comment.