From: bdbaddog Date: Sat, 20 Sep 2008 05:55:45 +0000 (+0000) Subject: Fix indentation issue X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=541a8354277e5397f7c84c1b483a604ed198175c;p=scons.git Fix indentation issue git-svn-id: http://scons.tigris.org/svn/scons/trunk@3444 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/QMTest/TestSCons.py b/QMTest/TestSCons.py index 0cf94b6b..e14f8f4d 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