From 18e2c96899223591492ac931be562058d1c218d6 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Fri, 19 Feb 2016 10:03:16 +0100 Subject: [PATCH] [fix] bad string creation --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cbc682e..b439889 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,6 @@ setup(name='prosopopee', keywords='', include_package_data=True, 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/*'], }, )