diff options
| author | William Deegan <bill@baddogconsulting.com> | 2008-09-20 05:55:45 (GMT) |
|---|---|---|
| committer | William Deegan <bill@baddogconsulting.com> | 2008-09-20 05:55:45 (GMT) |
| commit | df866c47321b2ade752d320045fbd6eb0062b5ee (patch) | |
| tree | 7ec4e2dec1a5c183863ce480465723944c9ad2bf | |
| parent | fa63153c9ba99481ce070c5eca25016d08a6a13f (diff) | |
| download | SCons-df866c47321b2ade752d320045fbd6eb0062b5ee.zip SCons-df866c47321b2ade752d320045fbd6eb0062b5ee.tar.gz SCons-df866c47321b2ade752d320045fbd6eb0062b5ee.tar.bz2 | |
Fix indentation issue
| -rw-r--r-- | QMTest/TestSCons.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py index 0cf94b6..e14f8f4 100644 --- a/QMTest/TestSCons.py +++ b/QMTest/TestSCons.py @@ -110,9 +110,9 @@ def gccFortranLibs(): for l in stderr.readlines(): list = string.split(l) if len(list) > 3 and list[:2] == ['gcc', 'version']: - if list[2][:3] in ('4.1','4.2','4.3'): - libs = ['gfortranbegin'] - break + if list[2][:3] in ('4.1','4.2','4.3'): + libs = ['gfortranbegin'] + break if list[2][:2] in ('3.', '4.'): libs = ['frtbegin'] + libs break |
