From 5eb238407f5e079eb49f00f39a0c54c07c90c070 Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Tue, 15 Apr 2014 12:25:10 +0800 Subject: [PATCH] Tiny code styling issue --- lib/css.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/css.py b/lib/css.py index 7ab04b3..07b3726 100644 --- a/lib/css.py +++ b/lib/css.py @@ -147,7 +147,6 @@ class Recess(Compiler): if self._compress: cmd.append('--compress') - (code, out, err) = process(cmd, self._cwd) if code != 0 or len(out) == 0: raise CssCompileFailed('Error during compile') @@ -178,7 +177,7 @@ class Lessc(Compiler): if self._compress: cmd.append('--compress') - """Append the source and destination""" + # Append the source and destination. cmd.append(sourcePath) cmd.append(os.path.relpath(self._dest, self._cwd)) -- 2.11.0