[fix] bad string creation

This commit is contained in:
Laurent Peuch 2016-02-19 10:03:16 +01:00
parent 961a83f519
commit 18e2c96899

View File

@ -30,6 +30,6 @@ setup(name='prosopopee',
keywords='', keywords='',
include_package_data=True, include_package_data=True,
package_data={ package_data={
'prosopopee': ["static/x/*" for x in os.listdir("./prosopopee/static/")] + ['templates/*.html', 'templates/sections/*'], 'prosopopee': ["static/%s/*" % x for x in os.listdir("./prosopopee/static/")] + ['templates/*.html', 'templates/sections/*'],
}, },
) )