diff options
author | Steven Knight <knight@baldmt.com> | 2008-10-08 01:10:58 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2008-10-08 01:10:58 (GMT) |
commit | d22eccb00b45e41210811ef254f190902c0224b0 (patch) | |
tree | 7d1a98bf146446de9dceb82a5cb8b487230029f8 | |
parent | 2e72e2bba6d804961beaf8f2298138754e36ca24 (diff) | |
download | SCons-d22eccb00b45e41210811ef254f190902c0224b0.zip SCons-d22eccb00b45e41210811ef254f190902c0224b0.tar.gz SCons-d22eccb00b45e41210811ef254f190902c0224b0.tar.bz2 |
Python 1.5 compatibility.
-rw-r--r-- | src/engine/SCons/Tool/tex.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py index 350422d..9405ea5 100644 --- a/src/engine/SCons/Tool/tex.py +++ b/src/engine/SCons/Tool/tex.py @@ -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: |