[minor] don't compress cssmin on walk

This commit is contained in:
Rushabh Mehta 2013-11-15 11:35:25 +05:30
parent b647e091da
commit b8f2efe5ef

View file

@ -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: