Skip to content

Commit

Permalink
Sorting the list of skipped.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoramite committed Nov 1, 2017
1 parent 2d89564 commit e84c086
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grow/translators/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ def _cleanup_locales(self, locales):
# Summary of skipped files.
if skipped['symlink']:
self.pod.logger.info('Skipping: {} (symlinked)'.format(
', '.join(skipped['symlink'])))
', '.join(sorted(skipped['symlink']))))
if skipped['po']:
self.pod.logger.info('Skipping: {} (no `.po` file)'.format(
', '.join(skipped['po'])))
', '.join(sorted(skipped['po']))))

return clean_locales

Expand Down

0 comments on commit e84c086

Please sign in to comment.