diff piecrust/processing/less.py @ 116:1c13f3389fcb

Cosmetic fix.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 27 Oct 2014 08:18:12 -0700
parents de6a296744f7
children 0811f92cbdc7
line wrap: on
line diff
--- a/piecrust/processing/less.py	Mon Oct 27 08:17:51 2014 -0700
+++ b/piecrust/processing/less.py	Mon Oct 27 08:18:12 2014 -0700
@@ -56,7 +56,7 @@
 
         # On Windows, we need to run the process in a shell environment
         # otherwise it looks like `PATH` isn't taken into account.
-        shell=(platform.system() == 'Windows')
+        shell = (platform.system() == 'Windows')
         try:
             retcode = subprocess.call(args, shell=shell)
         except FileNotFoundError as ex: