From: Christopher Lenz Date: Sun, 9 Sep 2007 17:07:45 +0000 (+0000) Subject: Fix error in `compile_catalog` distutils command. Closes #65. X-Git-Tag: 1.0~376 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11956b5c10a45370aff6ac66764e7c02ca7fe235;p=thirdparty%2Fbabel.git Fix error in `compile_catalog` distutils command. Closes #65. --- diff --git a/babel/messages/frontend.py b/babel/messages/frontend.py index 994effd9..b54cd8f8 100755 --- a/babel/messages/frontend.py +++ b/babel/messages/frontend.py @@ -127,7 +127,7 @@ class compile_catalog(Command): if self.output_file: mo_files.append(self.output_file) else: - mo_files.append(os.path.join(self.directory, locale, + mo_files.append(os.path.join(self.directory, self.locale, 'LC_MESSAGES', self.domain + '.mo'))