You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix check for .mo files in translation directories
In Python 2 the `filter()` worked because it returned a list, but in
Python 3 it's a generator which is never falsy.
That aside, using `any()` there is much cleaner (filter-with-lambda was
never pythonic anyway).
0 commit comments