fix
authorMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 4 Apr 2012 09:27:08 +0000 (11:27 +0200)
committerMarcin Koziej <marcin.koziej@nowoczesnapolska.org.pl>
Wed, 4 Apr 2012 09:27:08 +0000 (11:27 +0200)
apps/wolnelektury_core/management/commands/localepack.py

index 12413a3..e5362fe 100644 (file)
@@ -45,9 +45,12 @@ class AppLocale(Locale):
     def save(self, output_directory, languages):
         for lc in languages:
             lc = lc[0]
+            out = os.path.join(output_directory, lc, self.name + '.po')
             if os.path.exists(os.path.join(self.path, 'locale', lc)):
+                if not os.path.exists(os.path.dirname(out)):
+                    os.makedirs(os.path.dirname(dir))
                 shutil.copy2(os.path.join(self.path, 'locale', lc, 'LC_MESSAGES', 'django.po'),
-                         os.path.join(output_directory, lc, self.name + '.po'))
+                         out)
 
     def load(self, input_directory, languages):
         for lc in zip(*languages)[0]: