From: Andrew Gaffney Date: Sun, 11 Jan 2009 06:05:44 +0000 (-0600) Subject: Fix up a few bad replacements from previous commit X-Git-Tag: CATALYST-2.0.10~3^2~217 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=80f984a2213d44e94c0d7e8048a93f05afedf252;p=catalyst.git Fix up a few bad replacements from previous commit --- diff --git a/ChangeLog b/ChangeLog index 890fdcdf..f5e7dbc8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,10 @@ # Copyright 2002-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS) # Distributed under the GPL v2 + 11 Jan 2009; Andrew Gaffney + modules/catalyst/target/generic_stage.py: + Fix up a few bad replacements from previous commit + 11 Jan 2009; Andrew Gaffney modules/catalyst/config.py, modules/catalyst/lock.py, modules/catalyst/support.py, modules/catalyst/target/embedded.py, diff --git a/modules/catalyst/target/generic_stage.py b/modules/catalyst/target/generic_stage.py index 21e1285e..c8b7b8df 100644 --- a/modules/catalyst/target/generic_stage.py +++ b/modules/catalyst/target/generic_stage.py @@ -1586,7 +1586,7 @@ class generic_stage_target(generic_target): array.sort() for j in array: contents=generate_contents(file,contents_function=j,\ -"VERBOSE" in verbose=self.settings) + verbose=("VERBOSE" in self.settings)) if contents: myf.write(contents) myf.close() @@ -1607,12 +1607,12 @@ class generic_stage_target(generic_target): if "all" in array: for k in hash_map.keys(): hash=generate_hash(f,hash_function=k,verbose=\ -"VERBOSE" in self.settings) + ("VERBOSE" in self.settings)) myf.write(hash) else: for j in array: hash=generate_hash(f,hash_function=j,verbose=\ -"VERBOSE" in self.settings) + ("VERBOSE" in self.settings)) myf.write(hash) myf.close()