From: managan Date: Tue, 25 Nov 2008 18:37:22 +0000 (+0000) Subject: Accidently left a debug print in. X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c48bdc7dfb24411706690f2763befe858890542c;p=scons.git Accidently left a debug print in. git-svn-id: http://scons.tigris.org/svn/scons/trunk@3794 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py index 634adef3..49da3d0d 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)