Python 1.5 compatibility.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 8 Oct 2008 01:10:58 +0000 (01:10 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Wed, 8 Oct 2008 01:10:58 +0000 (01:10 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@3595 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/engine/SCons/Tool/tex.py

index 350422d5d727d8075cef899e6ad6f80307495fea..9405ea5e3408bc7e0eeac04cde376a900a1efe69 100644 (file)
@@ -496,7 +496,9 @@ def tex_emitter_core(target, source, env, graphics_extensions):
         pass
     else:
         # Split at os.pathsep to convert into absolute path
-        paths = paths.split(os.pathsep)
+        # TODO(1.5)
+        #paths = paths.split(os.pathsep)
+        paths = string.split(paths, os.pathsep)
 
     # now that we have the path list restore the env
     if savedpath is _null: