[pkg] fix mistake in c7b218125c25
authorJulien Cristau <julien.cristau@logilab.fr>
Thu, 22 Jan 2015 17:32:49 +0100
changeset 10160 b733789cc339
parent 10152 2ca571e4cb2f
child 10161 138464fc1c33
[pkg] fix mistake in c7b218125c25 We ended up with the wrong filenames
__pkginfo__.py
--- a/__pkginfo__.py	Thu Jan 08 12:20:36 2015 +0100
+++ b/__pkginfo__.py	Thu Jan 22 17:32:49 2015 +0100
@@ -107,7 +107,7 @@
     data_files = [
         # server data
         [join('share', 'cubicweb', 'schemas'),
-         [join('schemas', filename) for filename in glob.glob(join('schemas', '*.sql'))]],
+         glob.glob(join('schemas', '*.sql'))],
         [join('share', 'cubicweb', 'migration'),
          [join(_server_migration_dir, filename)
           for filename in listdir(_server_migration_dir)]],
@@ -125,7 +125,7 @@
         [join('share', 'cubicweb', 'cubes', 'shared', 'wdoc', 'images'),
          [join(_wdocimages_dir, fname) for fname in listdir(_wdocimages_dir)]],
         [join('share', 'cubicweb', 'cubes', 'shared', 'i18n'),
-         [join(_i18n_dir, fname) for fname in glob.glob(join(_i18n_dir, '*.po'))]],
+         glob.glob(join(_i18n_dir, '*.po'))],
         # skeleton
         ]
 except OSError: