From 6d8c18bc0b10a41d64296d42214e92e338a9270b Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 24 Nov 2015 09:26:03 -0800 Subject: Fix warning message when running SCons with a python built without sha256 or other required hashlib. Previously it would say no module SCons.Warnings. I can't find an effective way to test for this. --- src/engine/SCons/CacheDir.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/engine/SCons/CacheDir.py b/src/engine/SCons/CacheDir.py index f32b326..3b7d06f 100644 --- a/src/engine/SCons/CacheDir.py +++ b/src/engine/SCons/CacheDir.py @@ -32,6 +32,7 @@ import stat import sys import SCons.Action +import SCons.Warnings cache_enabled = True cache_debug = False -- cgit v0.12