changeset 116:1c13f3389fcb

Cosmetic fix.
author Ludovic Chabant <ludovic@chabant.com>
date Mon, 27 Oct 2014 08:18:12 -0700
parents 9c074aec60a6
children 6827dcc9d3fb
files piecrust/processing/less.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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: