From 667a2c8cae3e97264e4e35bf0a26e06746c602b3 Mon Sep 17 00:00:00 2001 From: golubdr Date: Wed, 22 Aug 2012 23:39:06 +0000 Subject: [PATCH] Fix indentation. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6256 212acab6-be3b-0410-9dea-997c60f758d6 --- SCons/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SCons/utils.py b/SCons/utils.py index 5cb5462a..0bf3e540 100644 --- a/SCons/utils.py +++ b/SCons/utils.py @@ -24,8 +24,8 @@ def AddZLib(env, platform, alias='install-utils'): zlib = ['zdll', 'z'] if 'ZLIB_W32_DLL' in env and env['ZLIB_W32_DLL']: env.DistributeW32Bin(env['ZLIB_W32_DLL'], alias=alias) - if 'ZLIB_W32_NEW_DLL' in env and env['ZLIB_W32_NEW_DLL']: - env.DistributeW32Bin(env['ZLIB_W32_NEW_DLL'], alias=alias) + if 'ZLIB_W32_NEW_DLL' in env and env['ZLIB_W32_NEW_DLL']: + env.DistributeW32Bin(env['ZLIB_W32_NEW_DLL'], alias=alias) else: print 'Please specify folder of zlib for Win32 via ZLIB_W32' Exit(1)