From b19f166992a718c1d936c7c8bcacbc991f9ef635 Mon Sep 17 00:00:00 2001 From: Sergey Fursov Date: Tue, 28 Apr 2015 17:35:55 +0300 Subject: [PATCH] Fixed bug in minify pre-setup function Collect all files from collection instead of last one only --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 75606b8..68208ce 100755 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ def minify(files, outfile, ftype): for filename in files: with io.open(getPkgPath() + filename, 'r', encoding='utf8') as f: - content = f.read() + content = content + '\n' + f.read() data = { 'code': content,