diff options
| author | Steven Knight <knight@baldmt.com> | 2005-10-09 04:47:13 (GMT) |
|---|---|---|
| committer | Steven Knight <knight@baldmt.com> | 2005-10-09 04:47:13 (GMT) |
| commit | 435130568f78858e4d122c2ff2d1de7eb25feb80 (patch) | |
| tree | 8f39aa9594bbeecb09e57a6b121e7fade567b147 /src/engine/SCons/Tool | |
| parent | 5ab67031831fd47ce778e0270fa460453ff9fd4f (diff) | |
| download | SCons-435130568f78858e4d122c2ff2d1de7eb25feb80.zip SCons-435130568f78858e4d122c2ff2d1de7eb25feb80.tar.gz SCons-435130568f78858e4d122c2ff2d1de7eb25feb80.tar.bz2 | |
Get rid of the last tabs in the source files and have the TestSCons infrastructure use the python -tt option when executing SCons to make sure they do not recur.
Diffstat (limited to 'src/engine/SCons/Tool')
| -rw-r--r-- | src/engine/SCons/Tool/msvs.py | 2 | ||||
| -rw-r--r-- | src/engine/SCons/Tool/tex.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/SCons/Tool/msvs.py b/src/engine/SCons/Tool/msvs.py index 280c456..5542a88 100644 --- a/src/engine/SCons/Tool/msvs.py +++ b/src/engine/SCons/Tool/msvs.py @@ -197,7 +197,7 @@ class _DSPGenerator: for v in variants: outdir.append(s) - self.sconscript = env['MSVSSCONSCRIPT'] + self.sconscript = env['MSVSSCONSCRIPT'] self.env = env diff --git a/src/engine/SCons/Tool/tex.py b/src/engine/SCons/Tool/tex.py index db2664a..adb6c06 100644 --- a/src/engine/SCons/Tool/tex.py +++ b/src/engine/SCons/Tool/tex.py @@ -81,7 +81,7 @@ def is_LaTeX(flist): for f in flist: content = f.get_contents() if LaTeX_re.search(content): - return 1 + return 1 return 0 def TeXLaTeXFunction(target = None, source= None, env=None): @@ -89,9 +89,9 @@ def TeXLaTeXFunction(target = None, source= None, env=None): decide the "flavor" of the source and then executes the appropriate program.""" if is_LaTeX(source): - LaTeXAuxAction(target,source,env) + LaTeXAuxAction(target,source,env) else: - TeXAction(target,source,env) + TeXAction(target,source,env) return 0 TeXLaTeXAction = SCons.Action.Action(TeXLaTeXFunction, |
