diff options
Diffstat (limited to 'test/option--C.py')
-rw-r--r-- | test/option--C.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/option--C.py b/test/option--C.py index 3d93d2f..1a9a72b 100644 --- a/test/option--C.py +++ b/test/option--C.py @@ -25,16 +25,15 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import string import types import TestSCons def match_normcase(lines, matches): if not type(lines) is types.ListType: - lines = string.split(lines, "\n") + lines = lines.split("\n") if not type(matches) is types.ListType: - matches = string.split(matches, "\n") + matches = matches.split("\n") if len(lines) != len(matches): return for i in range(len(lines)): |