From bcf8b965b4a711d5f5d8a672aeb4943b433db11d Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Mon, 26 Aug 2002 23:50:45 +0000 Subject: Fix the SConstruct to avoid zipit NameError if zip isn't available. --- SConstruct | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 9f323c0..eb08380 100644 --- a/SConstruct +++ b/SConstruct @@ -37,7 +37,7 @@ import sys import time project = 'scons' -default_version = '0.08' +default_version = '0.09' Default('.') @@ -172,6 +172,8 @@ zcat = 'gzip -d -c' # # Figure out if we can handle .zip files. # +zipit = None +unzipit = None try: import zipfile -- cgit v0.12