From: John P. Davis Date: Wed, 11 Feb 2004 21:40:26 +0000 (+0000) Subject: fix missing colon after else line ~537 X-Git-Tag: CATALYST_1_0_1~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=82734ead40bfb0adaa1afc0c056cf820df7369b3;p=catalyst.git fix missing colon after else line ~537 git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@218 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/modules/targets.py b/modules/targets.py index 7f48d38d..341d84c4 100644 --- a/modules/targets.py +++ b/modules/targets.py @@ -1,6 +1,6 @@ # Distributed under the GNU General Public License version 2 # Copyright 2003-2004 Gentoo Technologies, Inc. -# $Header: /var/cvsroot/gentoo/src/catalyst/modules/Attic/targets.py,v 1.82 2004/02/11 19:12:07 drobbins Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/modules/Attic/targets.py,v 1.83 2004/02/11 21:40:26 zhen Exp $ import os,string,imp,types,shutil from catalyst_support import * @@ -534,7 +534,7 @@ class livecd_stage2_target(generic_stage_target): #extraversion is now an optional parameter, so that don't need to worry about it unless #they have to args.append(self.settings["boot/kernel/"+kname+"/extraversion"]) - else + else: #this value will be detected on the bash side and indicate that EXTRAVERSION processing #should be skipped args.append("NULL_VALUE")