Accidently left a debug print in.
authormanagan <managan@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 25 Nov 2008 18:37:22 +0000 (18:37 +0000)
committermanagan <managan@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Tue, 25 Nov 2008 18:37:22 +0000 (18:37 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@3794 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/engine/SCons/Tool/tex.py

index 634adef3a0e335a2755cbd2974d9c7ea9ffb6a11..49da3d0dbf934323266cf81681c12f2f43b82c22 100644 (file)
@@ -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)