Fix up a few bad replacements from previous commit
authorAndrew Gaffney <agaffney@gentoo.org>
Sun, 11 Jan 2009 06:05:44 +0000 (00:05 -0600)
committerAndrew Gaffney <agaffney@gentoo.org>
Sun, 11 Jan 2009 06:05:44 +0000 (00:05 -0600)
ChangeLog
modules/catalyst/target/generic_stage.py

index 890fdcdff1d57e226a36b586b3b3ee635ce80fea..f5e7dbc8cb529bb307ad2229b7b4fbff5fb5af31 100644 (file)
--- 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 <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,
index 21e1285ec0474820d678b6eca1f3440252ec87ee..c8b7b8df59fe18e34eb4b1601e0f1392ae6de63c 100644 (file)
@@ -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()