# Copyright 2002-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
# Distributed under the GPL v2
+ 11 Jan 2009; Andrew Gaffney <agaffney@gentoo.org>
+ modules/catalyst/target/generic_stage.py:
+ Fix up a few bad replacements from previous commit
+
11 Jan 2009; Andrew Gaffney <agaffney@gentoo.org>
modules/catalyst/config.py, modules/catalyst/lock.py,
modules/catalyst/support.py, modules/catalyst/target/embedded.py,
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()
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()