From dca874f0ea1832e01b641e7569f0a42a7e6a8ad4 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 10 Nov 2020 16:29:54 +0100 Subject: setup.py: Translation files end with '.po', not just 'po'. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf826cd..36cd87d 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ for strRoot, lstDirnames, lstFilenames in os.walk('po'): for strFilename in lstFilenames: - if strFilename.endswith('po'): + if strFilename.endswith('.po'): strLocale = os.path.splitext(strFilename)[0] -- cgit v1.2.3