From 78398b0527af07a3cfe99980fd816899d72f18ea Mon Sep 17 00:00:00 2001 From: Robert Managan Date: Tue, 25 Nov 2008 18:37:22 +0000 Subject: Accidently left a debug print in. --- src/engine/SCons/Tool/tex.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py index 634adef..49da3d0 100644 --- a/src/engine/SCons/Tool/tex.py +++ b/src/engine/SCons/Tool/tex.py @@ -447,10 +447,11 @@ def ScanFiles(theFile, target, paths, file_tests, file_tests_search, env, graphi # so if the extension is included in the name then both searches find it # we don't want to try to build a .pdf from a .pdf so make sure src!=file wanted if (graphicSrc != None) and (graphicSrc != graphicNode): - if Verbose and (graphicNode == None): - print "need to build '%s' by epstopdf %s -o %s" % (graphFile,graphicSrc,graphFile) - else: - print "no need to build '%s', but source file %s exists" % (graphicNode,graphicSrc) + if Verbose: + if graphicNode == None: + print "need to build '%s' by epstopdf %s -o %s" % (graphFile,graphicSrc,graphFile) + else: + print "no need to build '%s', but source file %s exists" % (graphicNode,graphicSrc) graphicNode = env.PDF(graphicSrc) env.Depends(target[0],graphicNode) -- cgit v0.12