Skip to content

Commit

Permalink
Update dodo.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jacalata committed Jul 23, 2024
1 parent c90ddfa commit a2f9d6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ def clean_output_files():
def clean_string_files():
for current_locale in LOCALES:
FILESETS = [
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.properties*"),
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.po*"),
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.out*"),
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.properties"),
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.po"),
os.path.join("tabcmd", "locales", current_locale, "LC_MESSAGES", "*.out"),
]
for PATH in FILESETS:
for file in glob.glob(PATH):
Expand Down

0 comments on commit a2f9d6f

Please sign in to comment.