From b8f2efe5eff330c92cdccb4892b74788cb027d91 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 15 Nov 2013 11:35:25 +0530 Subject: [PATCH] [minor] don't compress cssmin on walk --- webnotes/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webnotes/build.py b/webnotes/build.py index c481ffaca4..5fedc68e17 100644 --- a/webnotes/build.py +++ b/webnotes/build.py @@ -111,7 +111,7 @@ class Bundle: print "--Error in:" + f + "--" print webnotes.getTraceback() - if out_type == 'css': + if not self.no_compress and out_type == 'css': outtxt = cssmin(outtxt) with open(outfile, 'w') as f: