[jhbuild] Remove unnecessary check for quiet_mode (GNOME bug 654466)



commit d8d042c56033784485e19386af0830098376fe1e
Author: Craig Keogh <cskeogh adam com au>
Date:   Sat Jul 23 17:31:39 2011 +0930

    Remove unnecessary check for quiet_mode (GNOME bug 654466)

 jhbuild/moduleset.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/jhbuild/moduleset.py b/jhbuild/moduleset.py
index 2751e9f..fd83b0e 100644
--- a/jhbuild/moduleset.py
+++ b/jhbuild/moduleset.py
@@ -72,9 +72,9 @@ class ModuleSet:
         module_name_lower = module_name.lower()
         for module in self.modules.keys():
             if module.lower() == module_name_lower:
-                if self.config is None or not self.config.quiet_mode:
-                    logging.info(_('fixed case of module \'%(orig)s\' to \'%(new)s\'') % {
-                            'orig': module_name, 'new': module})
+                logging.info(_('fixed case of module \'%(orig)s\' to '
+                               '\'%(new)s\'') % {'orig': module_name,
+                                                 'new': module})
                 return self.modules[module]
         raise KeyError(module_name)
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]