Issue 2332: Convert from using StringIO.StringIO class to using the
[scons.git] / src / engine / SCons / Node / FS.py
index 4e455da3ab6728791da48b11a3f31c439533205a..acba76ea267dcee9f8fb9193a4f5e9b3d72e7641 100644 (file)
@@ -37,7 +37,6 @@ from __future__ import generators  ### KEEP FOR COMPATIBILITY FIXERS
 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
 
 from itertools import izip
-import cStringIO
 import fnmatch
 import os
 import os.path
@@ -3111,7 +3110,7 @@ class FileFinder:
         if verbose and not callable(verbose):
             if not SCons.Util.is_String(verbose):
                 verbose = "find_file"
-            _verbose = '  %s: ' % verbose
+            _verbose = u'  %s: ' % verbose
             verbose = lambda s: sys.stdout.write(_verbose + s)
 
         filedir, filename = os.path.split(filename)