From: <bl...@us...> - 2003-05-25 18:04:18
|
Update of /cvsroot/cpptool/rfta/bin In directory sc8-pr-cvs1:/tmp/cvs-serv6642/bin Modified Files: lister.py Log Message: * quoted the filenames when passing them to astdump. Index: lister.py =================================================================== RCS file: /cvsroot/cpptool/rfta/bin/lister.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lister.py 25 May 2003 17:16:48 -0000 1.5 --- lister.py 25 May 2003 18:04:15 -0000 1.6 *************** *** 163,167 **** print "Generating AST for ", source_path, " in ", output_path, Path(output_path).ensure_dir_exists() ! exit_code = os.spawnl( os.P_WAIT, "astdump", "astdump", source_path, output_path ) status = self.convertParseExitCode(exit_code) self.parse_result[ source_path ] = ParseResult( status, source_path, output_path ) --- 163,167 ---- print "Generating AST for ", source_path, " in ", output_path, Path(output_path).ensure_dir_exists() ! exit_code = os.spawnl( os.P_WAIT, "astdump", "astdump", '"'+source_path+'"', '"'+output_path+'"' ) status = self.convertParseExitCode(exit_code) self.parse_result[ source_path ] = ParseResult( status, source_path, output_path ) |